Author: rhuijben
Date: Tue Nov 24 08:19:27 2015
New Revision: 1716062
URL: http://svn.apache.org/viewvc?rev=1716062&view=rev
Log:
* config_store.c
* incoming.c
Even more annotation on the investigate branch.
Modified:
serf/branches/pump-investigate/config_store.c
serf/branches/pump-investigate/incoming.c
Modified: serf/branches/pump-investigate/config_store.c
URL:
http://svn.apache.org/viewvc/serf/branches/pump-investigate/config_store.c?rev=1716062&r1=1716061&r2=1716062&view=diff
==============================================================================
--- serf/branches/pump-investigate/config_store.c (original)
+++ serf/branches/pump-investigate/config_store.c Tue Nov 24 08:19:27 2015
@@ -196,6 +196,7 @@ apr_status_t serf__config_store_get_clie
cfg->conn_pool = client->pool;
+ fprintf(stderr, "Create subpool\n");
if ((status = apr_pool_create(&tmp_pool, out_pool)) != APR_SUCCESS)
return status;
@@ -218,6 +219,9 @@ apr_status_t serf__config_store_get_clie
*config = cfg;
+ fprintf(stderr, "Returning\n");
+
+
return APR_SUCCESS;
}
Modified: serf/branches/pump-investigate/incoming.c
URL:
http://svn.apache.org/viewvc/serf/branches/pump-investigate/incoming.c?rev=1716062&r1=1716061&r2=1716062&view=diff
==============================================================================
--- serf/branches/pump-investigate/incoming.c (original)
+++ serf/branches/pump-investigate/incoming.c Tue Nov 24 08:19:27 2015
@@ -709,8 +709,9 @@ apr_status_t serf_incoming_create2(
fprintf(stderr, "Create config\n");
/* Store the connection specific info in the configuration store */
- rv = serf__config_store_get_client_config(ctx, ic, &config, pool);
+ rv = serf__config_store_get_client_config(ctx, ic, &config, ic_pool);
if (rv) {
+ fprintf(stderr, "Config create failed\n");
apr_pool_destroy(ic->pool);
return rv;
}