summaryrefslogtreecommitdiff
path: root/libgpython
diff options
context:
space:
mode:
authorredbrain <redbrain@crules.org>2010-08-13 07:02:36 +0100
committerredbrain <redbrain@crules.org>2010-08-13 07:02:36 +0100
commit8894b2ccf0389fe8a52552bb122314c3b5840de5 (patch)
treee91e8b55d08024843c4cf98efbccccee94bca30f /libgpython
parent91e6e477283a0cb86f12cf4203297d9a9c4af708 (diff)
downloadgcc-8894b2ccf0389fe8a52552bb122314c3b5840de5.tar.gz
fixed sig-segv within processing block decl's
Diffstat (limited to 'libgpython')
-rw-r--r--libgpython/runtime/py_garbage.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libgpython/runtime/py_garbage.c b/libgpython/runtime/py_garbage.c
index 4b2e24a8d53..e85d36c7f92 100644
--- a/libgpython/runtime/py_garbage.c
+++ b/libgpython/runtime/py_garbage.c
@@ -62,8 +62,8 @@ void gpy_garbage_mark_obj__( gpy_object_state_t * const sym )
}
else
{
- gpy_garbage_vec= (gpy_vector_t *)
- gpy_malloc(sizeof(gpy_vector_t));
+ gpy_garbage_vec = (gpy_vector_t *)
+ gpy_malloc( sizeof(gpy_vector_t) );
gpy_vec_init( gpy_garbage_vec );
gpy_vec_push( gpy_garbage_vec, sym );