Gentoo Archives: gentoo-commits

From: "Victor Ostorga (vostorga)" <vostorga@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/qtparted/files: qtparted-0.4.5-parted-1.9-fix.patch
Date: Wed, 29 Jul 2009 16:18:24
Message-Id: E1MWBrC-0006Uu-3Q@stork.gentoo.org
1 vostorga 09/07/29 16:18:22
2
3 Added: qtparted-0.4.5-parted-1.9-fix.patch
4 Log:
5 Allowing sys-apps/qtparted-0.4.5 to build against sys-apps/parted-1.9.0
6 (Portage version: 2.1.6.13/cvs/Linux i686)
7
8 Revision Changes Path
9 1.1 sys-apps/qtparted/files/qtparted-0.4.5-parted-1.9-fix.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/qtparted/files/qtparted-0.4.5-parted-1.9-fix.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/qtparted/files/qtparted-0.4.5-parted-1.9-fix.patch?rev=1.1&content-type=text/plain
13
14 Index: qtparted-0.4.5-parted-1.9-fix.patch
15 ===================================================================
16 diff -NrU5 qtparted-0.4.5.original/src/qp_libparted.cpp qtparted-0.4.5/src/qp_libparted.cpp
17 --- qtparted-0.4.5.original/src/qp_libparted.cpp 2009-07-29 15:42:54.000000000 +0000
18 +++ qtparted-0.4.5/src/qp_libparted.cpp 2009-07-29 15:49:16.000000000 +0000
19 @@ -1746,15 +1746,15 @@
20 if (ped_exception_throw(PED_EXCEPTION_ERROR,
21 (PedExceptionOption)PED_EXCEPTION_IGNORE_CANCEL,
22 label.latin1(),
23 path) != PED_EXCEPTION_IGNORE) goto error_free_path;
24 }
25 - ped_free(path);
26 + free(path);
27 return true;
28
29 error_free_path:
30 - ped_free(path);
31 + free(path);
32
33 //error:
34 return false;
35 }