mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 11:11:08 +00:00
exiftag: Check the result of gst_date_time_new_local_time
Fixes a critical warning when parsing a JPEG containing a malformed `DateTime` tag (like `0000:00:00 00:00:00`). Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7709>
This commit is contained in:
parent
703cc1783e
commit
8cf0d5a65c
1 changed files with 7 additions and 3 deletions
|
@ -1322,9 +1322,13 @@ parse_exif_ascii_tag (GstExifReader * reader, const GstExifTagMatch * tag,
|
||||||
GstDateTime *d;
|
GstDateTime *d;
|
||||||
|
|
||||||
d = gst_date_time_new_local_time (year, month, day, hour, minute, second);
|
d = gst_date_time_new_local_time (year, month, day, hour, minute, second);
|
||||||
gst_tag_list_add (reader->taglist, GST_TAG_MERGE_REPLACE,
|
if (d) {
|
||||||
tag->gst_tag, d, NULL);
|
gst_tag_list_add (reader->taglist, GST_TAG_MERGE_REPLACE,
|
||||||
gst_date_time_unref (d);
|
tag->gst_tag, d, NULL);
|
||||||
|
gst_date_time_unref (d);
|
||||||
|
} else {
|
||||||
|
GST_WARNING ("Failed to parse %s into a datetime tag", utfstr);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
GST_WARNING ("Failed to parse %s into a datetime tag", utfstr);
|
GST_WARNING ("Failed to parse %s into a datetime tag", utfstr);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue