pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/graphics/libexif don't return a value in a void functi...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/72cc55dcb366
branches:  trunk
changeset: 494674:72cc55dcb366
user:      jschauma <jschauma%pkgsrc.org@localhost>
date:      Fri May 27 14:20:36 2005 +0000

description:
don't return a value in a void function, just return.
This fixes the build for IRIX MIPSPro compilers, that actually bail out
on this condition with an error.

diffstat:

 graphics/libexif/distinfo         |  4 ++--
 graphics/libexif/patches/patch-ac |  8 ++++----
 2 files changed, 6 insertions(+), 6 deletions(-)

diffs (37 lines):

diff -r 34f0a77d3dfe -r 72cc55dcb366 graphics/libexif/distinfo
--- a/graphics/libexif/distinfo Fri May 27 13:48:31 2005 +0000
+++ b/graphics/libexif/distinfo Fri May 27 14:20:36 2005 +0000
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.15 2005/05/13 11:57:59 salo Exp $
+$NetBSD: distinfo,v 1.16 2005/05/27 14:20:36 jschauma Exp $
 
 SHA1 (libexif-0.6.12.tar.bz2) = 5d2c5976521e179d41ff8908b678b14f2e8e690b
 RMD160 (libexif-0.6.12.tar.bz2) = 24cfdb7663f0566f2907987e5dbc472c21b583d9
 Size (libexif-0.6.12.tar.bz2) = 378650 bytes
 SHA1 (patch-aa) = e32ab9cad1720f0b4d6178240e78193a97c4c876
 SHA1 (patch-ab) = 973ca09fc059d74e3221bba12e6e8f4630db20bb
-SHA1 (patch-ac) = 5c61cb1135b7254f0cd01127929a1bdea1de1053
+SHA1 (patch-ac) = 0aa196539b3e272487dd85a4cccf0f1b7761d132
diff -r 34f0a77d3dfe -r 72cc55dcb366 graphics/libexif/patches/patch-ac
--- a/graphics/libexif/patches/patch-ac Fri May 27 13:48:31 2005 +0000
+++ b/graphics/libexif/patches/patch-ac Fri May 27 14:20:36 2005 +0000
@@ -1,7 +1,7 @@
-$NetBSD: patch-ac,v 1.1 2005/05/13 11:57:59 salo Exp $
+$NetBSD: patch-ac,v 1.2 2005/05/27 14:20:36 jschauma Exp $
 
---- libexif/exif-data.c.orig   2005-03-13 03:27:13.000000000 +0100
-+++ libexif/exif-data.c        2005-05-13 13:48:13.000000000 +0200
+--- ./libexif/exif-data.c.orig 2005-03-12 21:27:13.000000000 -0500
++++ ./libexif/exif-data.c      2005-05-27 10:08:40.000000000 -0400
 @@ -284,9 +284,10 @@
  }
  
@@ -23,7 +23,7 @@
 +        {
 +          exif_log (data->priv->log, EXIF_LOG_CODE_CORRUPT_DATA, "ExifData",
 +                    "Deep recursion in exif_data_load_data_content");
-+          return 0;
++          return;
 +        }
 +
        /* Read the number of entries */



Home | Main Index | Thread Index | Old Index