]> source.dussan.org Git - rspamd.git/commitdiff
Fix initialization point.
authorVsevolod Stakhov <vsevolod@rambler-co.ru>
Wed, 9 Mar 2011 14:52:17 +0000 (17:52 +0300)
committerVsevolod Stakhov <vsevolod@rambler-co.ru>
Wed, 9 Mar 2011 14:52:17 +0000 (17:52 +0300)
src/cdb/cdb_init.c
src/lua/lua_cdb.c

index b962c43fa876b06bcf3e93fd8f37f20760da2127..0c0b5e353354775b0e38ae02e08cc218c3f159ae 100644 (file)
@@ -57,8 +57,6 @@ cdb_init(struct cdb *cdbp, int fd)
        cdbp->cdb_fsize = fsize;
        cdbp->cdb_mem = mem;
        cdbp->mtime = st.st_mtime;
-       cdbp->check_timer_ev = NULL;
-       cdbp->check_timer_tv = NULL;
 
        cdbp->cdb_vpos = cdbp->cdb_vlen = 0;
        cdbp->cdb_kpos = cdbp->cdb_klen = 0;
index 61bcf1df44821a9351c358e0e048552a9adc51a7..24f6b205fef57f2c1b7e664357125517ad2df2ca 100644 (file)
@@ -72,6 +72,8 @@ lua_cdb_create (lua_State *L)
        else {
                cdb = g_malloc (sizeof (struct cdb));
                cdb->filename = g_strdup (filename);
+               cdb->check_timer_ev = NULL;
+               cdb->check_timer_tv = NULL;
                if (cdb_init (cdb, fd) == -1) {
                        msg_warn ("cannot open cdb: %s, %s", filename, strerror (errno));
                        lua_pushnil (L);