GNOME Bugzilla – Bug 621509
[xmptag] Uses uninitialized variable
Last modified: 2010-06-14 18:49:13 UTC
Hi, deserialize_exif_gps_coordinate() in gstxmptag.c uses the variable c uninitialized if the string contains no minutes, i.e. only the degrees. Not sure how c should be initialized, that's why I'm filing this bug ;)
Pushed this fix: commit 4219a5ae5c7ee8cab7db9bcf53207d46173f4b63 Author: Thiago Santos <thiago.sousa.santos@collabora.co.uk> Date: Mon Jun 14 15:05:16 2010 -0300 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 Thanks.