------------------------------------------------------------------------ r2364 | helixhorned | 2012-02-18 14:15:35 -0800 (Sat, 18 Feb 2012) | 4 lines Make compiler happy: remove 'may be used uninitialized' warning in multivoc.c. I'm not getting this warning (synthesis is) but I think it's justified because the VOC block parsing code isn't terribly validating... ------------------------------------------------------------------------ r2363 | helixhorned | 2012-02-18 14:15:19 -0800 (Sat, 18 Feb 2012) | 1 line Fix a potential free() of stack memory in screenshot code. Ouch! ------------------------------------------------------------------------ r2362 | helixhorned | 2012-02-18 14:15:04 -0800 (Sat, 18 Feb 2012) | 1 line Comment out unused dfread and kdfwrite functions in cache1d.c. ------------------------------------------------------------------------ r2361 | helixhorned | 2012-02-18 14:14:45 -0800 (Sat, 18 Feb 2012) | 6 lines constify various cache1d and pragmas functions, some copybuf* -> memcpy/move. The following functions have const qualifiers attached for the 'destination' arguments: kdfwrite, dfwrite in cache1d.c and copybuf{byte,reverse,} in the pragmas source or headers. A couple uses of the latter ones were replaced with calls to standard library functions. ------------------------------------------------------------------------ r2360 | helixhorned | 2012-02-18 09:57:07 -0800 (Sat, 18 Feb 2012) | 4 lines cache1d.c: debugging feature routing all allocache requests to malloc. This is useful to debug out-of-bound violations for memory allocated with that function. ------------------------------------------------------------------------