Browse Source

Fix cache init

tags/1.1.0
Vsevolod Stakhov 8 years ago
parent
commit
c3f06a6a9c
1 changed files with 1 additions and 4 deletions
  1. 1
    4
      src/libstat/learn_cache/sqlite3_cache.c

+ 1
- 4
src/libstat/learn_cache/sqlite3_cache.c View File

@@ -127,7 +127,7 @@ rspamd_stat_cache_sqlite3_init(struct rspamd_stat_ctx *ctx,
struct rspamd_stat_sqlite3_ctx *new = NULL;
const ucl_object_t *elt;
gchar dbpath[PATH_MAX];
const gchar *path;
const gchar *path = SQLITE_CACHE_PATH;
sqlite3 *sqlite;
GError *err = NULL;

@@ -138,9 +138,6 @@ rspamd_stat_cache_sqlite3_init(struct rspamd_stat_ctx *ctx,
if (elt != NULL) {
path = ucl_object_tostring (elt);
}
else {
path = SQLITE_CACHE_PATH;
}
}

rspamd_snprintf (dbpath, sizeof (dbpath), "%s", path);

Loading…
Cancel
Save