From: <ag...@us...> - 2008-09-20 07:03:55
|
Revision: 799 http://pure-lang.svn.sourceforge.net/pure-lang/?rev=799&view=rev Author: agraef Date: 2008-09-20 07:03:48 +0000 (Sat, 20 Sep 2008) Log Message: ----------- Bugfixes. Modified Paths: -------------- pure/trunk/runtime.cc Modified: pure/trunk/runtime.cc =================================================================== --- pure/trunk/runtime.cc 2008-09-20 06:59:05 UTC (rev 798) +++ pure/trunk/runtime.cc 2008-09-20 07:03:48 UTC (rev 799) @@ -4183,7 +4183,7 @@ y->tag = x->tag; y->data.mat.p = p; y->data.mat.refc = x->data.mat.refc; - *y->data.mat.refc++; + (*y->data.mat.refc)++; MEMDEBUG_NEW(y) return y; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |