summaryrefslogtreecommitdiff
path: root/media-libs/libexif/files/libexif-0.6.21-fix-C89-compatibility-issue.patch
blob: c423c9daa61cc553960bfdd43fcf4c1ed14db4fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
From 3840e4f1f550e0d113e4ed70bd74f9f798f7e6f8 Mon Sep 17 00:00:00 2001
From: Dan Fandrich <dan@coneharvesters.com>
Date: Sat, 13 Jul 2013 13:34:50 -0700
Subject: [PATCH] Fixed a C89 compatibility issue (bug #117 reported by Guenter
 Knauf)

---
 libexif/exif-entry.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/libexif/exif-entry.c b/libexif/exif-entry.c
index 54a90a2..bb42473 100644
--- a/libexif/exif-entry.c
+++ b/libexif/exif-entry.c
@@ -1375,12 +1375,14 @@ exif_entry_get_value (ExifEntry *e, char *val, unsigned int maxlen)
 	case EXIF_TAG_XP_KEYWORDS:
 	case EXIF_TAG_XP_SUBJECT:
 	{
+		unsigned short *utf16;
+
 		/* Sanity check the size to prevent overflow */
 		if (e->size+sizeof(unsigned short) < e->size) break;
 
 		/* The tag may not be U+0000-terminated , so make a local
 		   U+0000-terminated copy before converting it */
-		unsigned short *utf16 = exif_mem_alloc (e->priv->mem, e->size+sizeof(unsigned short));
+		utf16 = exif_mem_alloc (e->priv->mem, e->size+sizeof(unsigned short));
 		if (!utf16) break;
 		memcpy(utf16, e->data, e->size);
 		utf16[e->size/sizeof(unsigned short)] = 0;