| Summary: | Choosing to close chat tab after adding to ignore list crashes Konversation | ||
|---|---|---|---|
| Product: | [Applications] konversation | Reporter: | Leticia Hernández <aikurn> |
| Component: | general | Assignee: | Konversation Bugs <konversation-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | crash | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Ubuntu | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Leticia Hernández
2006-07-20 17:56:09 UTC
SVN commit 565822 by kling:
Fixed dangling pointer dereference when doing an ignore-and-close in query window.
BUG: 131123
M +1 -1 server.cpp
--- trunk/extragear/network/konversation/src/server.cpp #565821:565822
@@ -1932,7 +1932,7 @@
// else select next query
else lookQuery=queryList.next();
}
- delete query;
+ query->deleteLater();
}
void Server::sendJoinCommand(const QString& name, const QString& password)
|