[Modsnake-cvs] (jick) mod_snake/src bucket.i
Status: Alpha
Brought to you by:
jick
|
From: Mod S. C. L. <mod...@so...> - 2002-04-11 20:44:04
|
Mod Snake CVS committal
Author : jick
Project : mod_snake
Module : src
Dir : mod_snake/src
Modified Files:
bucket.i
Log Message:
Fixup for Apache 2.0 "gold" API.
Patch from Zander Lichstein <ZLi...@L9...>
===================================================================
RCS file: /cvsroot/modsnake/mod_snake/src/bucket.i,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- bucket.i 12 Feb 2001 06:11:24 -0000 1.11
+++ bucket.i 11 Apr 2002 20:43:59 -0000 1.12
@@ -272,7 +272,7 @@
#else
apr_bucket *eos;
- if((eos = apr_bucket_eos_create()) == NULL){
+ if((eos = apr_bucket_eos_create(brigade->bucket_alloc)) == NULL){
PyErr_SetString(PyExc_MemoryError, "internal bucket creation error");
return NULL;
}
|