diff options
author | Thomas Hellstrom <thomas-at-tungstengraphics-dot-com> | 2009-02-06 21:20:44 +0100 |
---|---|---|
committer | Thomas Hellstrom <thomas-at-tungstengraphics-dot-com> | 2009-02-06 21:20:44 +0100 |
commit | 550e3ec095c30c0a751e08aa4f7eb330093ddd6e (patch) | |
tree | 9c70674dcd4f6aef7c8f8176a1020ef002da03b8 | |
parent | 29e9dea0f2ec1bdea2c4ee20ed8e5fe5f947bede (diff) |
Fix a slabpool init issue.
-rw-r--r-- | src/wsbm_slabpool.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wsbm_slabpool.c b/src/wsbm_slabpool.c index b007d1e..9ee5011 100644 --- a/src/wsbm_slabpool.c +++ b/src/wsbm_slabpool.c @@ -680,6 +680,8 @@ wsbmSlabAllocBuffer(struct _WsbmSlabSizeHeader *header) WSBM_MUTEX_UNLOCK(&header->mutex); buf = WSBMLISTENTRY(list, struct _WsbmSlabBuffer, head); + buf->storage.destroyContainer = NULL; + #ifdef DEBUG_FENCESIGNALED createbuffer++; #endif |