summaryrefslogtreecommitdiffstats
path: root/telephony
diff options
context:
space:
mode:
authorMatt Ranostay <matt.ranostay@konsulko.com>2018-09-12 10:56:00 -0700
committerMatt Ranostay <matt.ranostay@konsulko.com>2018-09-12 19:06:08 +0000
commitfc112fb9066e26e5481b3a434ac9be614f97367a (patch)
tree0e3a2e26d244a7decba586e68bb154e68298f1d6 /telephony
parentcc65b62a4625188c8aab3406dd50d71c16722a3a (diff)
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> (cherry picked from commit 051bf8e79c99699704032b7b943459a30aae22c8)
Diffstat (limited to 'telephony')
-rw-r--r--telephony/telephony.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/telephony/telephony.cpp b/telephony/telephony.cpp
index 7f6a571..08b80b1 100644
--- a/telephony/telephony.cpp
+++ b/telephony/telephony.cpp
@@ -41,7 +41,7 @@ void Telephony::dial(QString number)
TelephonyMessage *tmsg = new TelephonyMessage();
tmsg->createRequest("dial", number);
m_mloop->sendMessage(tmsg);
- tmsg->deleteLater();
+ delete tmsg;
}
void Telephony::answer()
@@ -49,7 +49,7 @@ void Telephony::answer()
TelephonyMessage *tmsg = new TelephonyMessage();
tmsg->createRequest("answer");
m_mloop->sendMessage(tmsg);
- tmsg->deleteLater();
+ delete tmsg;
}
void Telephony::hangup()
@@ -57,7 +57,7 @@ void Telephony::hangup()
TelephonyMessage *tmsg = new TelephonyMessage();
tmsg->createRequest("hangup");
m_mloop->sendMessage(tmsg);
- tmsg->deleteLater();
+ delete tmsg;
}
void Telephony::onConnected()
@@ -74,7 +74,7 @@ void Telephony::onConnected()
tmsg = new TelephonyMessage();
tmsg->createRequest("subscribe", eventIterator.next());
m_mloop->sendMessage(tmsg);
- tmsg->deleteLater();
+ delete tmsg;
}
setConnected(true);