summaryrefslogtreecommitdiff
path: root/user/baloo/initialise-variable.patch
diff options
context:
space:
mode:
Diffstat (limited to 'user/baloo/initialise-variable.patch')
-rw-r--r--user/baloo/initialise-variable.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/user/baloo/initialise-variable.patch b/user/baloo/initialise-variable.patch
new file mode 100644
index 000000000..836e26ff0
--- /dev/null
+++ b/user/baloo/initialise-variable.patch
@@ -0,0 +1,11 @@
+--- baloo-5.38.0/src/engine/postingdb.cpp.old 2017-09-03 02:58:12.000000000 -0500
++++ baloo-5.38.0/src/engine/postingdb.cpp 2017-10-04 21:44:30.019139903 -0500
+@@ -274,7 +274,7 @@
+ mdb_cursor_open(m_txn, m_dbi, &cursor);
+
+ MDB_val key = {0, nullptr};
+- MDB_val val;
++ MDB_val val = {0, nullptr};
+
+ QMap<QByteArray, PostingList> map;
+ while (1) {