diff options
author | jschauma <jschauma@pkgsrc.org> | 2005-05-27 14:20:36 +0000 |
---|---|---|
committer | jschauma <jschauma@pkgsrc.org> | 2005-05-27 14:20:36 +0000 |
commit | 2cb7e9b52b5769fbbc0306483e9e48b3ac5bb997 (patch) | |
tree | 42ae85b58549431dcf0df220b63376e614983259 /graphics/libexif | |
parent | 154c0fd125ba2b9aae5c5839f8862e7bedb0330c (diff) | |
download | pkgsrc-2cb7e9b52b5769fbbc0306483e9e48b3ac5bb997.tar.gz |
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 (limited to 'graphics/libexif')
-rw-r--r-- | graphics/libexif/distinfo | 4 | ||||
-rw-r--r-- | graphics/libexif/patches/patch-ac | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/graphics/libexif/distinfo b/graphics/libexif/distinfo index 7b14cffce0a..fe5ba97f962 100644 --- a/graphics/libexif/distinfo +++ b/graphics/libexif/distinfo @@ -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 --git a/graphics/libexif/patches/patch-ac b/graphics/libexif/patches/patch-ac index 2c65330f534..67dafc26058 100644 --- a/graphics/libexif/patches/patch-ac +++ b/graphics/libexif/patches/patch-ac @@ -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 @@ $NetBSD: patch-ac,v 1.1 2005/05/13 11:57:59 salo Exp $ + { + 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 */ |