On Sat, Oct 01, 2005 at 02:59:04PM -0400, Justin Pryzby wrote: > works, writing a compressed file as expected, but gzopen(fn, "wb0") > gives many valgrind errors about "Conditional jump or move depends on > uninitialised value(s)". Maybe this is not the correct way to write
Could you please supply sample code? Note that a number of valgrind warnings are expected while compressing using zlib. The algorithm uses some unrolled loops which can access valid but uninitialised addresses but subsequently discards the results of those accesses. -- "You grabbed my hand and we fell into it, like a daydream - or a fever." -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

