Hello All,
My application is using the below code in input filter:-
apr_bucket *tmpb = apr_bucket_heap_create(sContentData.c_str(),
sContentData.length(), NULL, apr_bucket_alloc_create(f->r->pool));
apr_brigade_cleanup(ctx->pbb);
APR_BRIGADE_INSERT_TAIL(ctx->pbb, tmpb);
tmpb = apr_bucket_eos_create(apr_bucket_alloc_create(f->r->pool));
APR_BRIGADE_INSERT_TAIL(ctx->pbb, tmpb);
The above code causes crash when empty data is posted to the application. But
when I change the call bucket allocator from apr_bucket_alloc_create to
conn_rec::bucket_alloc, it runs fine.
What can be the issue and is changing the above will be safe?
Thanks for help,
Mohit
**************** CAUTION - Disclaimer *****************
This e-mail contains PRIVILEGED AND CONFIDENTIAL INFORMATION intended solely
for the use of the addressee(s). If you are not the intended recipient, please
notify the sender by e-mail and delete the original message. Further, you are
not to copy, disclose, or distribute this e-mail or its contents to any other
person and any such actions are unlawful. This e-mail may contain viruses.
Infosys has taken every reasonable precaution to minimize this risk, but is not
liable for any damage you may sustain as a result of any virus in this e-mail.
You should carry out your own virus checks before opening the e-mail or
attachment. Infosys reserves the right to monitor and review the content of all
messages sent to or from this e-mail address. Messages sent to or from this
e-mail address may be stored on the Infosys e-mail system.
***INFOSYS******** End of Disclaimer ********INFOSYS***