summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2009-07-24 18:09:11 (GMT)
committerRemko Tronçon <git@el-tramo.be>2009-07-24 18:09:11 (GMT)
commit0dd979a856719f16925f84d6be532bd31044fa82 (patch)
tree25ef241df969d6cdb6ca9d5cc46db76ca695d133 /Swiften/Session
parent42e410208ca9aa8af5f27c85a6b33af488a0b6cc (diff)
downloadswift-0dd979a856719f16925f84d6be532bd31044fa82.zip
swift-0dd979a856719f16925f84d6be532bd31044fa82.tar.bz2
Fix uninitialized streamstack.
Diffstat (limited to 'Swiften/Session')
-rw-r--r--Swiften/Session/Session.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Swiften/Session/Session.cpp b/Swiften/Session/Session.cpp
index 5ee98e7..92d1fdc 100644
--- a/Swiften/Session/Session.cpp
+++ b/Swiften/Session/Session.cpp
@@ -14,6 +14,7 @@ Session::Session(
connection(connection),
payloadParserFactories(payloadParserFactories),
payloadSerializers(payloadSerializers),
+ streamStack(0),
initialized(false) {
}