mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
gst/subparse/samiparse.c: Don't ignore return value of strtol (++compiler_happiness).
Original commit message from CVS: * gst/subparse/samiparse.c: (handle_start_font): Don't ignore return value of strtol (++compiler_happiness).
This commit is contained in:
parent
7b7a6d12f5
commit
320a2f974a
2 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2006-05-18 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* gst/subparse/samiparse.c: (handle_start_font):
|
||||
Don't ignore return value of strtol (++compiler_happiness).
|
||||
|
||||
2006-05-17 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
Patch by: Young-Ho Cha <ganadist chollian net>
|
||||
|
|
|
@ -168,8 +168,9 @@ handle_start_font (GstSamiContext * sctx, const xmlChar ** atts)
|
|||
if (!(*value == '#' && len == 7)) {
|
||||
gchar *r;
|
||||
|
||||
strtol ((const char *) value, &r, 16); /* trying onvert hex */
|
||||
if (((xmlChar *) r == (value + 6) && len == 6)) {
|
||||
/* check if it looks like hex */
|
||||
if (strtol ((const char *) value, &r, 16) >= 0 &&
|
||||
((xmlChar *) r == (value + 6) && len == 6)) {
|
||||
sharp = "#";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue