Skip to content

Commit

Permalink
Fix leak in qt-unix-signals
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Jan 21, 2020
1 parent 775092b commit acd4584
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion external/qt-unix-signals/sigwatch.cpp
Expand Up @@ -71,7 +71,7 @@ class UnixSignalWatcherPrivate : public QObject

int UnixSignalWatcherPrivate::sockpair[2];

UnixSignalWatcherPrivate::UnixSignalWatcherPrivate(UnixSignalWatcher *q) :
UnixSignalWatcherPrivate::UnixSignalWatcherPrivate(UnixSignalWatcher *q) : QObject( q ),
q_ptr(q)
{
#if HAS_UNIX_SIGNALS
Expand Down

0 comments on commit acd4584

Please sign in to comment.