aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorItay Grudev <itay+89bf5c@grudev.com>2019-01-22 12:21:25 +0000
committerItay Grudev <itay+89bf5c@grudev.com>2019-01-22 12:23:51 +0000
commitadac9a30aa82a03a85d66c6d98836d7a122d2978 (patch)
tree97d37b70fe733928e07ffc935134ac06ab3b7869
parentfixed build process below Qt 5.6 (#57) (diff)
downloadsingleapplication-adac9a30aa82a03a85d66c6d98836d7a122d2978.tar.xz
v3.0.143.0.14
-rw-r--r--.gitignore8
-rw-r--r--CHANGELOG.md5
-rw-r--r--singleapplication_p.cpp2
3 files changed, 15 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..3adfcc5
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,8 @@
+/examples/*/*.o
+/examples/*/Makefile
+/examples/*/moc_*.cpp
+/examples/*/moc_predefs.h
+/examples/*/*.qmake.stash
+/examples/basic/basic
+/examples/calculator/calculator
+/examples/sending_arguments/sending_arguments
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 62f9adf..837c98b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,11 @@
Changelog
=========
+__3.0.14__
+----------
+
+* Fixed uninitialised variables in the `SingleApplicationPrivate` constructor.
+
__3.0.13a__
----------
diff --git a/singleapplication_p.cpp b/singleapplication_p.cpp
index c1bdff4..de4945e 100644
--- a/singleapplication_p.cpp
+++ b/singleapplication_p.cpp
@@ -55,6 +55,8 @@ SingleApplicationPrivate::SingleApplicationPrivate( SingleApplication *q_ptr )
{
server = nullptr;
socket = nullptr;
+ memory = nullptr;
+ instanceNumber = -1;
}
SingleApplicationPrivate::~SingleApplicationPrivate()