Author: rhuijben
Date: Tue Nov 24 08:29:18 2015
New Revision: 1716066

URL: http://svn.apache.org/viewvc?rev=1716066&view=rev
Log:
* config_store.c
  (create_config_hdr): Can't believe I'm adding more...

Modified:
    serf/branches/pump-investigate/config_store.c

Modified: serf/branches/pump-investigate/config_store.c
URL: 
http://svn.apache.org/viewvc/serf/branches/pump-investigate/config_store.c?rev=1716066&r1=1716065&r2=1716066&view=diff
==============================================================================
--- serf/branches/pump-investigate/config_store.c (original)
+++ serf/branches/pump-investigate/config_store.c Tue Nov 24 08:29:18 2015
@@ -39,7 +39,10 @@ typedef struct config_entry_t {
 
 static serf__config_hdr_t *create_config_hdr(apr_pool_t *pool)
 {
-    serf__config_hdr_t *hdr = apr_pcalloc(pool, sizeof(serf__config_hdr_t));
+    serf__config_hdr_t *hdr;
+    fprintf(stderr, "In alloc helper\n");
+    hdr  = apr_pcalloc(pool, sizeof(serf__config_hdr_t));
+    fprintf(stderr, "Header: %p\n", hdr);
     hdr->pool = pool;
     return hdr;
 }


Reply via email to