Author: rhuijben
Date: Tue Nov 24 08:22:44 2015
New Revision: 1716063

URL: http://svn.apache.org/viewvc?rev=1716063&view=rev
Log:
* config_store.c
  On the investigation branch: Continue adding printf()s around the bus error
  until I find the cause.

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=1716063&r1=1716062&r2=1716063&view=diff
==============================================================================
--- serf/branches/pump-investigate/config_store.c (original)
+++ serf/branches/pump-investigate/config_store.c Tue Nov 24 08:22:44 2015
@@ -202,10 +202,12 @@ apr_status_t serf__config_store_get_clie
 
         /* Find the config values for this connection, create empty structure
         if needed */
+        fprintf(stderr, "Looking for existing item\n");
         client_key = conn_key_for_client(client, tmp_pool);
         per_conn = apr_hash_get(config_store->global_per_conn, client_key,
                                 APR_HASH_KEY_STRING);
         if (!per_conn) {
+            fprintf(stderr, "Adding item\n");
             per_conn = create_config_hdr(client->pool);
             apr_hash_set(config_store->global_per_conn,
                          apr_pstrdup(client->pool, client_key),


Reply via email to