diff options
author | Markus Goetz <Markus.Goetz@nokia.com> | 2009-09-22 12:50:48 (GMT) |
---|---|---|
committer | Markus Goetz <Markus.Goetz@nokia.com> | 2009-09-22 12:50:48 (GMT) |
commit | 394fddbe1ed93f8aafc29ace8217ad8d77e7276f (patch) | |
tree | cb7d6905525b34d1a80b15e7b859c667deb2a476 /src/corelib | |
parent | 787d5dc3ccd913b125979ee83d5249dcf78fb8ea (diff) | |
download | Qt-394fddbe1ed93f8aafc29ace8217ad8d77e7276f.zip Qt-394fddbe1ed93f8aafc29ace8217ad8d77e7276f.tar.gz Qt-394fddbe1ed93f8aafc29ace8217ad8d77e7276f.tar.bz2 |
Fix memleak in tst_qhttpnetworkconnection
Reviewed-by: TrustMe
Diffstat (limited to 'src/corelib')
-rw-r--r-- | src/corelib/io/qnoncontiguousbytedevice_p.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/corelib/io/qnoncontiguousbytedevice_p.h b/src/corelib/io/qnoncontiguousbytedevice_p.h index e55a46c..34d6980 100644 --- a/src/corelib/io/qnoncontiguousbytedevice_p.h +++ b/src/corelib/io/qnoncontiguousbytedevice_p.h @@ -72,9 +72,11 @@ public: void disableReset(); virtual qint64 size() = 0; + virtual ~QNonContiguousByteDevice(); + protected: QNonContiguousByteDevice(); - virtual ~QNonContiguousByteDevice(); + bool resetDisabled; Q_SIGNALS: |