mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-18 05:16:05 +00:00
tag: xmp: Init char variable for gps coordinates
Initialize char variable for gps coordinates deserialization to 0 to identify when it couldn't be parsed/found and error out. Fixes #621509
This commit is contained in:
parent
bbd7dee8f6
commit
4219a5ae5c
1 changed files with 1 additions and 1 deletions
|
@ -253,7 +253,7 @@ deserialize_exif_gps_coordinate (GstTagList * taglist, const gchar * gst_tag,
|
|||
gdouble value = 0;
|
||||
gint d = 0, m = 0, s = 0;
|
||||
gdouble m2 = 0;
|
||||
gchar c;
|
||||
gchar c = 0;
|
||||
const gchar *current;
|
||||
|
||||
/* get the degrees */
|
||||
|
|
Loading…
Reference in a new issue