- updated to 1.17.1:

* fixed two errors found by fuzzer
* phase_one_correct always returns value; handle P1 return codes 
  in postprocessing
- removed upstreamedretval.diff

OBS-URL: https://build.opensuse.org/package/show/graphics/libraw?expand=0&rev=77
This commit is contained in:
Petr Gajdos 2015-12-03 14:00:23 +00:00 committed by Git OBS Bridge
parent 1a1f6f55d8
commit 88d354148a
5 changed files with 13 additions and 32 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e643c20945d548aac1eaa1f5573bf74050e0f49ec6a53a6843dc2a2cfb647310
size 1468635

3
LibRaw-0.17.1.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e599651a4cc37e00cfc2d2b56be87c3a4e4dae2c360b680fe9ab3f93d07cdea1
size 1472341

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Thu Dec 3 13:56:58 UTC 2015 - pgajdos@suse.com
- updated to 1.17.1:
* fixed two errors found by fuzzer
* phase_one_correct always returns value; handle P1 return codes
in postprocessing
- removed upstreamedretval.diff
-------------------------------------------------------------------
Fri Nov 13 16:27:05 UTC 2015 - jengelh@inai.de

View File

@ -20,7 +20,7 @@
Name: libraw
%define lname libraw15
Version: 0.17.0
Version: 0.17.1
Release: 0
Summary: Library for reading RAW files obtained from digital photo cameras
License: CDDL-1.0 or LGPL-2.1
@ -29,7 +29,6 @@ Url: http://www.libraw.org/
#Git-Clone: git://github.com/LibRaw/LibRaw
Source: http://www.libraw.org/data/%tar_name-%version.tar.gz
Patch1: retval.diff
BuildRequires: fdupes
BuildRequires: gcc-c++
BuildRequires: libjasper-devel
@ -96,7 +95,6 @@ against LibRaw. LibRaw does not provide dynamic libraries.
%prep
%setup -qn %tar_name-%version
%patch -P 1 -p1
%build
export CXXFLAGS="%optflags -fPIC"

View File

@ -1,26 +0,0 @@
From: Jan Engelhardt <jengelh@inai.de>
Date: 2015-11-13 17:24:03.127632735 +0100
rpmlint says:
I: Program returns random data in a function
E: libraw no-return-in-nonvoid-function internal/dcraw_common.cpp:1710
gcc:
internal/dcraw_common.cpp: In member function 'int LibRaw::phase_one_correct()':
internal/dcraw_common.cpp:1710:1: warning: control reaches end of non-void function [-Wreturn-type]
---
internal/dcraw_common.cpp | 1 +
1 file changed, 1 insertion(+)
Index: LibRaw-0.17.0/internal/dcraw_common.cpp
===================================================================
--- LibRaw-0.17.0.orig/internal/dcraw_common.cpp
+++ LibRaw-0.17.0/internal/dcraw_common.cpp
@@ -1707,6 +1707,7 @@ int CLASS phase_one_correct()
return LIBRAW_CANCELLED_BY_CALLBACK;
}
#endif
+ return 0;
}
void CLASS phase_one_load_raw()