Mailinglist Archive: opensuse-commit (793 mails)
| < Previous | Next > |
commit dx for openSUSE:Factory
- From: root@xxxxxxxxxxxxxxx (h_root)
- Date: Mon, 21 Sep 2009 21:00:12 +0200
- Message-id: <20090921190012.5A72862F7@xxxxxxxxxxxxxxx>
Hello community,
here is the log from the commit of package dx for openSUSE:Factory
checked in at Mon Sep 21 21:00:12 CEST 2009.
--------
--- dx/dx.changes 2009-08-10 16:35:23.000000000 +0200
+++ /mounts/work_src_done/STABLE/dx/dx.changes 2009-09-17 10:32:30.000000000
+0200
@@ -1,0 +2,5 @@
+Thu Sep 17 10:30:58 CEST 2009 - mseben@xxxxxxxxxx
+
+- added leak-fix.patch [bnc#538399]
+
+-------------------------------------------------------------------
calling whatdependson for head-i586
New:
----
dx-4.4.4-leak-fix.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ dx.spec ++++++
--- /var/tmp/diff_new_pack.HsRKp9/_old 2009-09-21 20:59:44.000000000 +0200
+++ /var/tmp/diff_new_pack.HsRKp9/_new 2009-09-21 20:59:44.000000000 +0200
@@ -25,7 +25,7 @@
%endif
BuildRequires: fdupes
Version: 4.4.4
-Release: 225
+Release: 226
Summary: IBM Open Visualization Data Explorer
License: IBM Public License ..
Group: Productivity/Graphics/Visualization/Other
@@ -55,6 +55,8 @@
Patch15: %{name}-%{version}-missing-sentinel.patch
# PATCH-FIX-UPSTREAM link against ImageMagick libraries (bnc#525987)
Patch16: %{name}-%{version}-imagemagick.patch
+# PATCH-FIX-UPSTREAM fix mem leak (bnc#538399)
+Patch17: %{name}-%{version}-leak-fix.patch
Patch20: dxsamples-%{samplesversion}-java.patch
Patch21: dxsamples-%{samplesversion}-DESTDIR.patch
Patch22: dxsamples-%{samplesversion}-rights.patch
@@ -156,6 +158,7 @@
%patch14
%patch15
%patch16
+%patch17
# samples
cd ../dxsamples-%{samplesversion}
%patch20
++++++ dx-4.4.4-leak-fix.patch ++++++
--- src/uipp/dxuilib/DXLinkHandler.C 2003-07-12 02:12:20.000000000 +0200
+++ src/uipp/dxuilib/DXLinkHandler.C 2009-09-17 10:27:00.000000000 +0200
@@ -402,13 +402,15 @@
*/
boolean DXLinkHandler::OpenNetwork(const char *c, int id, void *va)
{
- char *buf = new char[strlen(c)+1];
+ char *buf;
char *d, *e, *cfg, *net;
int len=0;
if( !c )
return TRUE;
+ buf = new char[strlen(c)+1];
+
e = buf;
strcpy(buf, c);
/* remove leading spaces */
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx
| < Previous | Next > |