aboutsummaryrefslogtreecommitdiff
path: root/src/Keys.cc
diff options
context:
space:
mode:
authorTomas Janousek <tomi@nomi.cz>2008-02-04 17:33:17 (GMT)
committerTomas Janousek <tomi@nomi.cz>2008-02-04 17:46:24 (GMT)
commitb61502ffbc17d51506bb274472f9bf8934319364 (patch)
treec1f41c75da9563253b3376d2232760684ac0cd3d /src/Keys.cc
parent9671b2f99cf42fcd1d610385836ffc79502d717a (diff)
downloadfluxbox-b61502ffbc17d51506bb274472f9bf8934319364.zip
fluxbox-b61502ffbc17d51506bb274472f9bf8934319364.tar.bz2
Fix a freed memory access in Keys::doAction.
The thing next_key pointed to was getting freed in deleteTree. Signed-off-by: Tomas Janousek <tomi@nomi.cz>
Diffstat (limited to 'src/Keys.cc')
-rw-r--r--src/Keys.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Keys.cc b/src/Keys.cc
index 7052f55..d85c696 100644
--- a/src/Keys.cc
+++ b/src/Keys.cc
@@ -168,7 +168,7 @@ Keys::t_key::~t_key() {
168 168
169 169
170 170
171Keys::Keys() { } 171Keys::Keys() : next_key(0) { }
172 172
173Keys::~Keys() { 173Keys::~Keys() {
174 ungrabKeys(); 174 ungrabKeys();
@@ -181,6 +181,7 @@ void Keys::deleteTree() {
181 for (keyspace_t::iterator map_it = m_map.begin(); map_it != m_map.end(); ++map_it) 181 for (keyspace_t::iterator map_it = m_map.begin(); map_it != m_map.end(); ++map_it)
182 delete map_it->second; 182 delete map_it->second;
183 m_map.clear(); 183 m_map.clear();
184 next_key = 0;
184} 185}
185 186
186// keys are only grabbed in global context 187// keys are only grabbed in global context
@@ -502,7 +503,6 @@ bool Keys::doAction(int type, unsigned int mods, unsigned int key,
502 isdouble = double_click; 503 isdouble = double_click;
503 } 504 }
504 505
505 static t_key* next_key = m_keylist;
506 if (!next_key) 506 if (!next_key)
507 next_key = m_keylist; 507 next_key = m_keylist;
508 508