<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">diff -bu ./CSV_XS.xs~ ./CSV_XS.xs
--- ./CSV_XS.xs~	2012-11-19 09:18:05.000000000 -0600
+++ ./CSV_XS.xs	2012-11-26 16:05:43.410586807 -0600
@@ -522,9 +522,8 @@
 	csv-&gt;verbatim			= bool_opt ("verbatim");
 	csv-&gt;auto_diag			= bool_opt ("auto_diag");
 
-	sv_cache = newSVpvn ("", CACHE_SIZE);
+	sv_cache = newSVpvn ("\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", CACHE_SIZE);
 	csv-&gt;cache = (byte *)SvPVX (sv_cache);
-	memset (csv-&gt;cache, 0, CACHE_SIZE);
 	SvREADONLY_on (sv_cache);
 
 	csv-&gt;cache[CACHE_ID_quote_char]			= csv-&gt;quote_char;
</pre></body></html>