summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sci-libs/scipy/files/scipy-0.5.2-umfpack.patch')
-rw-r--r--sci-libs/scipy/files/scipy-0.5.2-umfpack.patch28
1 files changed, 28 insertions, 0 deletions
diff --git a/sci-libs/scipy/files/scipy-0.5.2-umfpack.patch b/sci-libs/scipy/files/scipy-0.5.2-umfpack.patch
new file mode 100644
index 000000000000..21916b097ed9
--- /dev/null
+++ b/sci-libs/scipy/files/scipy-0.5.2-umfpack.patch
@@ -0,0 +1,28 @@
+--- Lib/linsolve/umfpack/umfpack.i.orig 2007-06-06 14:53:42.261505250 +0100
++++ Lib/linsolve/umfpack/umfpack.i 2007-06-06 14:54:12.167374250 +0100
+@@ -114,6 +114,7 @@
+ return NULL; \
+ } \
+ $1 = (double *) obj->data; \
++ Py_DECREF( obj ); \
+ };
+
+ /*!
+@@ -127,7 +128,7 @@
+ }; \
+ %typemap( python, argout ) ttype* opaque_argout { \
+ PyObject *obj; \
+- obj = SWIG_NewPointerObj( (ttype) (*$1), $*1_descriptor, 1 ); \
++ obj = SWIG_NewPointerObj( (ttype) (*$1), $*1_descriptor, 0 ); \
+ $result = helper_appendToTuple( $result, obj ); \
+ };
+
+@@ -143,7 +144,7 @@
+ }; \
+ %typemap( python, argout ) ttype* opaque_arginout { \
+ PyObject *obj; \
+- obj = SWIG_NewPointerObj( (ttype) (*$1), $*1_descriptor, 1 ); \
++ obj = SWIG_NewPointerObj( (ttype) (*$1), $*1_descriptor, 0 ); \
+ $result = helper_appendToTuple( $result, obj ); \
+ };
+