From ee8a93ae9af7d53d80040a66181c17c7870d2c5c Mon Sep 17 00:00:00 2001 From: Klaas Freitag Date: Thu, 16 Oct 2014 10:39:10 +0200 Subject: [PATCH] ownSql: Proper initialization of errId --- src/mirall/ownsql.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mirall/ownsql.cpp b/src/mirall/ownsql.cpp index df582941c0..6a5ca35704 100644 --- a/src/mirall/ownsql.cpp +++ b/src/mirall/ownsql.cpp @@ -25,7 +25,8 @@ namespace Mirall { SqlDatabase::SqlDatabase() - :_db(0) + :_db(0), + _errId(0) { }