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:
Tim-Philipp Müller 2006-05-18 10:05:23 +00:00
parent 7b7a6d12f5
commit 320a2f974a
2 changed files with 8 additions and 2 deletions

View file

@ -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>

View file

@ -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 = "#";
}
}