diff options
author | Matt Ranostay <matt.ranostay@konsulko.com> | 2018-09-12 10:56:00 -0700 |
---|---|---|
committer | Matt Ranostay <matt.ranostay@konsulko.com> | 2018-09-12 11:46:54 -0700 |
commit | 051bf8e79c99699704032b7b943459a30aae22c8 (patch) | |
tree | c3cc9d5c0349f2d568028c89ed3d560247939a19 /weather | |
parent | ee58ffc1da71d296fdae869dbaaa74a1c4a6c664 (diff) |
libqtappfw: remove deleteLater instances that aren't usedguppy_6.90.0guppy/6.90.06.90.0
Remove several deleteLater calls that should have been delete's.
This should solve race conditions that an object calls deleteLater(), and leaves
scope before the QT main loop is called.
Outcome of the race condition is that sometimes the memory allocator reallocates it
to another message and causes a crash.
Bug-AGL: SPEC-1680
Change-Id: Ic83d8c6c204c6e3248bbe9a9def1842e1e384b2b
Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
Diffstat (limited to 'weather')
-rw-r--r-- | weather/weather.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/weather/weather.cpp b/weather/weather.cpp index a4edb2a..c77e742 100644 --- a/weather/weather.cpp +++ b/weather/weather.cpp @@ -39,7 +39,7 @@ void Weather::onConnected() WeatherMessage *tmsg = new WeatherMessage(); tmsg->createRequest("subscribe", "weather"); m_mloop->sendMessage(tmsg); - tmsg->deleteLater(); + delete tmsg; } void Weather::onDisconnected() @@ -47,7 +47,7 @@ void Weather::onDisconnected() WeatherMessage *tmsg = new WeatherMessage(); tmsg->createRequest("unsubscribe", "weather"); m_mloop->sendMessage(tmsg); - tmsg->deleteLater(); + delete tmsg; } void Weather::onMessageReceived(MessageType type, Message *message) |