You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by rh...@apache.org on 2013/10/30 19:12:22 UTC

svn commit: r1537221 - /subversion/trunk/subversion/tests/libsvn_subr/checksum-test.c

Author: rhuijben
Date: Wed Oct 30 18:12:21 2013
New Revision: 1537221

URL: http://svn.apache.org/r1537221
Log:
* subversion/tests/libsvn_subr/checksum-test.c
  (zlib_expansion_test): Remove accidental duplicate variable definition,
    that broke the build on the Windows bots.

Modified:
    subversion/trunk/subversion/tests/libsvn_subr/checksum-test.c

Modified: subversion/trunk/subversion/tests/libsvn_subr/checksum-test.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/libsvn_subr/checksum-test.c?rev=1537221&r1=1537220&r2=1537221&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/libsvn_subr/checksum-test.c (original)
+++ subversion/trunk/subversion/tests/libsvn_subr/checksum-test.c Wed Oct 30 18:12:21 2013
@@ -173,10 +173,6 @@ zlib_expansion_test(const svn_test_opts_
   SVN_ERR(svn_stringbuf_from_file2(&deflated, data_path, pool));
   src_buffer = (Byte*)deflated->data;
 
-  z_stream stream;
-  memset(&stream, 0, sizeof(stream));
-  inflateInit2(&stream, -15 /* DEFLATE_WINDOW_SIZE */);
-
   /* Try to decompress the same data with different blocksizes */
   for (sz = 1; sz < 256; sz++)
     {