summaryrefslogtreecommitdiff
path: root/src/mir_core/db.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mir_core/db.cpp')
-rw-r--r--src/mir_core/db.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mir_core/db.cpp b/src/mir_core/db.cpp
index 7d6491c1e0..c4305ae33c 100644
--- a/src/mir_core/db.cpp
+++ b/src/mir_core/db.cpp
@@ -120,7 +120,7 @@ MIR_CORE_DLL(char*) db_get_sa(HANDLE hContact, const char *szModule, const char
db_get_s(hContact, szModule, szSetting, &dbv, DBVT_ASCIIZ);
if (dbv.type == DBVT_ASCIIZ)
str = mir_strdup(dbv.pszVal);
- db_free(&dbv);
+ db_free(&dbv);
return str;
}