summaryrefslogtreecommitdiff
path: root/libgphoto2
diff options
context:
space:
mode:
authorMarcus Meissner <marcus@jet.franken.de>2014-01-05 20:34:00 +0000
committerMarcus Meissner <marcus@jet.franken.de>2014-01-05 20:34:00 +0000
commit1efcd217fbf2162c6157fd04a97b08452beff58f (patch)
treeba9bc4c168796c7a6e84bf9697568ae3ed28cd49 /libgphoto2
parentaee0c68e3b185bfc3df363f46061eb1dab950b4c (diff)
downloadlibgphoto2-1efcd217fbf2162c6157fd04a97b08452beff58f.tar.gz
free comment (Coverity)
git-svn-id: https://svn.code.sf.net/p/gphoto/code/trunk/libgphoto2@14639 67ed7778-7388-44ab-90cf-0a291f65f57c
Diffstat (limited to 'libgphoto2')
-rw-r--r--libgphoto2/exif.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/libgphoto2/exif.c b/libgphoto2/exif.c
index 5886fa142..d79491aac 100644
--- a/libgphoto2/exif.c
+++ b/libgphoto2/exif.c
@@ -447,7 +447,10 @@ unsigned char *gpi_exif_get_thumbnail_and_size(exifparser *exifdat, long *size)
gpi_exif_get_field( EXIF_Model, -1, exifdat, &owner);
printf("Camera model: %s\n",owner.data);
printf("Comment for this picture (%d chars)",gpi_exif_get_comment( exifdat, &comment));
- if (comment) printf(" -> %s\n",comment);
+ if (comment) {
+ printf(" -> %s\n",comment);
+ free(comment);
+ }
gpi_exif_get_field( EXIF_SubjectDistance, 2, exifdat, &owner);
/* dump_exif(exifdat); */
}