]> git.pld-linux.org Git - packages/libexif.git/commitdiff
- hunted SEGV (already fixed in CVS as I can see)
authorJakub Bogusz <qboosh@pld-linux.org>
Thu, 24 Mar 2005 18:29:12 +0000 (18:29 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    libexif-segv.patch -> 1.1

libexif-segv.patch [new file with mode: 0644]

diff --git a/libexif-segv.patch b/libexif-segv.patch
new file mode 100644 (file)
index 0000000..cca4d2e
--- /dev/null
@@ -0,0 +1,11 @@
+--- libexif-0.6.12/libexif/exif-data.c.orig    2005-03-13 03:27:13.000000000 +0100
++++ libexif-0.6.12/libexif/exif-data.c 2005-03-24 19:31:33.047252528 +0100
+@@ -231,7 +231,7 @@
+                * the offset must be an even number. If we need to introduce
+                * a padding byte, we set it to 0.
+                */
+-              if (s & 1) *ds++;
++              if (s & 1) (*ds)++;
+               *d = exif_mem_realloc (data->priv->mem, *d, *ds);
+               if (!*d) {
+                       EXIF_LOG_NO_MEMORY (data->priv->log, "ExifData", *ds);
This page took 0.050313 seconds and 4 git commands to generate.