You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ic...@apache.org on 2016/02/02 13:30:51 UTC

svn commit: r1728101 - /httpd/test/mod_h2/trunk/mh2fuzz/mh2f_fuzzer.c

Author: icing
Date: Tue Feb  2 12:30:51 2016
New Revision: 1728101

URL: http://svn.apache.org/viewvc?rev=1728101&view=rev
Log:
all this uninitizalized memory will be lost like tears in the rain

Modified:
    httpd/test/mod_h2/trunk/mh2fuzz/mh2f_fuzzer.c

Modified: httpd/test/mod_h2/trunk/mh2fuzz/mh2f_fuzzer.c
URL: http://svn.apache.org/viewvc/httpd/test/mod_h2/trunk/mh2fuzz/mh2f_fuzzer.c?rev=1728101&r1=1728100&r2=1728101&view=diff
==============================================================================
--- httpd/test/mod_h2/trunk/mh2fuzz/mh2f_fuzzer.c (original)
+++ httpd/test/mod_h2/trunk/mh2fuzz/mh2f_fuzzer.c Tue Feb  2 12:30:51 2016
@@ -285,7 +285,7 @@ static h2c_session_obs *ds_create(const
 
 struct h2c_conn_obs *mh2f_conn_fuzzer_create(const char *name, apr_pool_t *p)
 {
-    h2c_conn_obs *obs;
+    h2c_conn_obs *obs = NULL;
     if (HAS_PREFIX("random-close", name)) {
         obs = rc_create(name, p);
     }