Fix silly bug in hex_to_data() where it compares a string pointer for whether
authorRonald S. Bultje <rsbultje@gmail.com>
Sat, 21 Mar 2009 20:58:41 +0000 (20:58 +0000)
committerRonald S. Bultje <rsbultje@gmail.com>
Sat, 21 Mar 2009 20:58:41 +0000 (20:58 +0000)
commit6a8c8b36b9f9a87daa02140c006f55f1a795294e
treefb6025a6c20e8638ca95cf64e1f7c1b13ffb6caf
parent64917dd3df832ab21c470e2ae9c05f5d2e067a80
Fix silly bug in hex_to_data() where it compares a string pointer for whether
it is '\0' rather than its content (char *p; if (p == '\0') instead of if
(*p == '\0')). See summary in "[PATCH] rtsp.c small cleanups" thread on
mailinglist.

Originally committed as revision 18125 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavformat/rtsp.c