https://issues.apache.org/bugzilla/show_bug.cgi?id=56034

--- Comment #6 from Yann Ylavic <[email protected]> ---
The attachment 31230 suggests you use APR <= 1.4.2 (without this fix
http://svn.apache.org/viewvc?view=revision&revision=1074877).

struct apr_bucket_brigade {
    apr_pool_t *p;
    struct apr_bucket_list {
            struct apr_bucket *next;
            struct apr_bucket *prev;
    }list;
    apr_bucket_alloc_t *bucket_alloc;
}

should be (from APR 1.4.3+) :

struct apr_bucket_brigade {
    apr_pool_t *p;
    struct apr_bucket_list {
            struct apr_bucket * volatile next;
            struct apr_bucket * volatile prev;
    }list;
    apr_bucket_alloc_t *bucket_alloc;
}

Can you upgrade to the latest APR 1.4.8 and see if it helps?

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to