summaryrefslogtreecommitdiffstats
path: root/ext/raw1394
diff options
context:
space:
mode:
authorSebastian Dröge <slomo@circular-chaos.org>2007-05-16 16:30:03 +0000
committerSebastian Dröge <slomo@circular-chaos.org>2007-05-16 16:30:03 +0000
commit62e85e8f7203a70c3a9d5ac6e9131aa4fccfcb8a (patch)
treed40a388fe2f9f5dfb5d8b798acd1eb2f7b4e8690 /ext/raw1394
parent5daef8a53d92df86d94fa9d28e72b7dad3f0b04b (diff)
ext/raw1394/gstdv1394src.c: Replace direct comparison of a string with the string literal "" with a comparison of the...
Original commit message from CVS: * ext/raw1394/gstdv1394src.c: (gst_dv1394src_uri_set_uri): Replace direct comparison of a string with the string literal "" with a comparison of the first character with '\0'. Fixes #438926.
Diffstat (limited to 'ext/raw1394')
-rw-r--r--ext/raw1394/gstdv1394src.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/raw1394/gstdv1394src.c b/ext/raw1394/gstdv1394src.c
index d10c389c..84476464 100644
--- a/ext/raw1394/gstdv1394src.c
+++ b/ext/raw1394/gstdv1394src.c
@@ -1084,7 +1084,7 @@ gst_dv1394src_uri_set_uri (GstURIHandler * handler, const gchar * uri)
g_free (protocol);
location = gst_uri_get_location (uri);
- if (location && (!(location == "")))
+ if (location && *location != '\0')
gst_dv1394src->port = strtol (location, NULL, 10);
else
gst_dv1394src->port = DEFAULT_PORT;