From: Andre Noll Date: Wed, 24 Oct 2007 10:47:09 +0000 (+0200) Subject: Add missing initialization of table pointer in blob_init(). X-Git-Tag: v0.3.0~226 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=1b5148109a273e7a30255ab3a705ca49f71e046f;hp=fa2e4b062432412b90ad7ba6e85d27764544f1c8 Add missing initialization of table pointer in blob_init(). --- diff --git a/blob.c b/blob.c index 3539453e..72e4a55b 100644 --- a/blob.c +++ b/blob.c @@ -534,6 +534,7 @@ static int blob_open(struct osl_table **table, t->close = table_name ## _close; \ t->create = table_name ## _create;\ t->event_handler = table_name ##_event_handler; \ + table_name ## _table = NULL; \ }