>
> Our problem, obviously, is the explicit return within the block. Maybe we
> could change the call to look like this:
>
> {
> apr_bucket *the_new_bucket;
>
> apr_bucket_do_create(the_new_bucket, ...);
> return the_new_bucket;
> }
>
+1. I really like the explicit return. Returning out of a function call from
within a macro should be a shooting offense.
Bill
