This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project gfxprim.git.
The branch, master has been updated via 223fd9830a04557d0efe63b9d3df692867532af0 (commit) from f8f30d3d8fef42b8abac47b127f1daa9ca4ac80f (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- http://repo.or.cz/w/gfxprim.git/commit/223fd9830a04557d0efe63b9d3df692867532...
commit 223fd9830a04557d0efe63b9d3df692867532af0 Author: Cyril Hrubis metan@ucw.cz Date: Sun Apr 7 00:35:16 2013 +0200
pywrap: backends: Fix the typemap BackendInit() hack.
Signed-off-by: Cyril Hrubis metan@ucw.cz
diff --git a/pylib/gfxprim/backends/backends.i b/pylib/gfxprim/backends/backends.i index f8ef6d4..6e5dc44 100644 --- a/pylib/gfxprim/backends/backends.i +++ b/pylib/gfxprim/backends/backends.i @@ -67,15 +67,15 @@ ERROR_ON_NULL(GP_BackendLinuxX11Init); return NULL; }
- $1 = fdopen(fd, "w"); + $1 = fdopen(dup(fd), "w"); } }
%exception GP_BackendInit { $action
- //HACK: free the FILE* - free(arg3); + //HACK: fclose the FILE* + fclose(arg3);
if (result == NULL) return PyErr_SetFromErrno(PyExc_OSError);
-----------------------------------------------------------------------
Summary of changes: pylib/gfxprim/backends/backends.i | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-)
repo.or.cz automatic notification. Contact project admin jiri.bluebear.dluhos@gmail.com if you want to unsubscribe, or site admin admin@repo.or.cz if you receive no reply.