ext/raw1394/gstdv1394src.c: Replace direct comparison of a string with the string...
authorSebastian Dröge <slomo@circular-chaos.org>
Wed, 16 May 2007 16:30:03 +0000 (16:30 +0000)
committerSebastian Dröge <slomo@circular-chaos.org>
Wed, 16 May 2007 16:30:03 +0000 (16:30 +0000)
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.

ChangeLog
ext/raw1394/gstdv1394src.c

index 7ad1368..25a7ce3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2007-05-16  Sebastian Dröge  <slomo@circular-chaos.org>
+
+       * 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.
+
 2007-05-15  Stefan Kost  <ensonic@users.sf.net>
 
        * gst/debug/breakmydata.c (gst_break_my_data_init):
index d10c389..8447646 100644 (file)
@@ -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;