diff options
author | Max Kellermann <max@duempel.org> | 2013-04-08 23:14:07 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-04-08 23:14:07 +0200 |
commit | 98cbc0ea79ce5bea637f7bd7ebe94e698cd818a0 (patch) | |
tree | a514f72181ce9b3158b25a1c5778c4477062dc06 /src/InotifyQueue.hxx | |
parent | dca111519627813608807b60b98f3d5133880120 (diff) | |
download | mpd-98cbc0ea79ce5bea637f7bd7ebe94e698cd818a0.tar.gz mpd-98cbc0ea79ce5bea637f7bd7ebe94e698cd818a0.tar.xz mpd-98cbc0ea79ce5bea637f7bd7ebe94e698cd818a0.zip |
event/TimeoutMonitor: eliminate support for periodic events
No caller needs this. Fixes use-after-free after returning from
Client::OnTimeout().
Diffstat (limited to '')
-rw-r--r-- | src/InotifyQueue.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/InotifyQueue.hxx b/src/InotifyQueue.hxx index 761df574a..818621ef8 100644 --- a/src/InotifyQueue.hxx +++ b/src/InotifyQueue.hxx @@ -35,7 +35,7 @@ public: void Enqueue(const char *uri_utf8); private: - virtual bool OnTimeout() override; + virtual void OnTimeout() override; }; #endif |