Fix initialization

Make clang warnings disappear
diff --git a/snappy-test.cc b/snappy-test.cc
index aae6072..5c9d041 100644
--- a/snappy-test.cc
+++ b/snappy-test.cc
@@ -464,7 +464,8 @@
   // Make sure we're at the end-of-compressed-data point.  This means
   // if we call inflate with Z_FINISH we won't consume any input or
   // write any output
-  Bytef dummyin, dummyout;
+  Bytef dummyout;
+  Bytef dummyin = 0;
   uLongf dummylen = 0;
   if ( UncompressChunkOrAll(&dummyout, &dummylen, &dummyin, 0, Z_FINISH)
        != Z_OK ) {