From 8b48945a025ae906c18e4a9442e0e4552013c4d9 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Wed, 30 May 2012 14:18:58 -0700 Subject: [PATCH] Update. --- src/SerializedTypes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SerializedTypes.cpp b/src/SerializedTypes.cpp index 8c783f9cc0..c24e607d0f 100644 --- a/src/SerializedTypes.cpp +++ b/src/SerializedTypes.cpp @@ -196,7 +196,7 @@ void STVector256::add(Serializer& s) const { int size = mValue.size(); if (!size) s.addVL(NULL, 0); - s.addVL(mValue[0].begin(), mValue.size() * (256 / 8)); + else s.addVL(mValue[0].begin(), mValue.size() * (256 / 8)); } //