summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosé María Alonso <nimiux@gentoo.org>2015-02-13 17:55:18 +0000
committerJosé María Alonso <nimiux@gentoo.org>2015-02-13 17:55:18 +0000
commit891cd7d9a81d0a92b8d5f70cd64c976f8ea39e01 (patch)
tree28a1f76b36e5a8baa274e61d8fd67a27bd456d7a /app-admin/tripwire/files
parentRevert the new USE flags, fix a Changelog typo. (diff)
downloadgentoo-2-891cd7d9a81d0a92b8d5f70cd64c976f8ea39e01.tar.gz
gentoo-2-891cd7d9a81d0a92b8d5f70cd64c976f8ea39e01.tar.bz2
gentoo-2-891cd7d9a81d0a92b8d5f70cd64c976f8ea39e01.zip
Bump to fix bug #495204. Thank to Gabriel Marcano
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key F253DB15)
Diffstat (limited to 'app-admin/tripwire/files')
-rw-r--r--app-admin/tripwire/files/tripwire-2.4.2.2-exception-shadowing.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/app-admin/tripwire/files/tripwire-2.4.2.2-exception-shadowing.patch b/app-admin/tripwire/files/tripwire-2.4.2.2-exception-shadowing.patch
new file mode 100644
index 000000000000..1347590ef462
--- /dev/null
+++ b/app-admin/tripwire/files/tripwire-2.4.2.2-exception-shadowing.patch
@@ -0,0 +1,13 @@
+--- a/src/core/archive.cpp
++++ b/src/core/archive.cpp
+@@ -886,8 +886,8 @@ void cLockedTemporaryFileArchive::OpenReadWrite( const TCHAR* filename, uint32 o
+ catch( eFSServices& e)
+ {
+ TSTRING errStr = TSS_GetString( cCore, core::STR_BAD_TEMPDIRECTORY );
+- eArchiveOpen e(strTempFile, errStr);
+- throw e;
++ eArchiveOpen ex(strTempFile, errStr);
++ throw ex;
+ }
+ }
+ ///////////////////////////////////////////////////////////////////////////////