From: <zw...@ma...> - 2009-05-08 07:33:19
|
Author: zwelch Date: 2009-05-08 07:33:08 +0200 (Fri, 08 May 2009) New Revision: 1662 Modified: trunk/src/helper/ioutil.c Log: Fix typo from hurrying the last commit. Nothing to see here. Modified: trunk/src/helper/ioutil.c =================================================================== --- trunk/src/helper/ioutil.c 2009-05-08 05:30:37 UTC (rev 1661) +++ trunk/src/helper/ioutil.c 2009-05-08 05:33:08 UTC (rev 1662) @@ -141,7 +141,7 @@ // 0-byte after buffer (not included in *len) serves as a sentinel char *buf = (char *)*data; - buf[*len = 0; + buf[*len] = 0; return ERROR_OK; } |