aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDeterminant <ted.sybil@gmail.com>2018-07-05 18:08:33 -0400
committerDeterminant <ted.sybil@gmail.com>2018-07-05 18:08:33 -0400
commitfe416dcb509770dbce1710358ef39fec43962d69 (patch)
tree52ee7c6d53e802533745ba85a769ed2798c27cc6
parent905e6649a7deb8db7325e8ff44caf6bc61b899b4 (diff)
...
-rw-r--r--include/salticidae/stream.h13
1 files changed, 11 insertions, 2 deletions
diff --git a/include/salticidae/stream.h b/include/salticidae/stream.h
index 8824f97..ffb577e 100644
--- a/include/salticidae/stream.h
+++ b/include/salticidae/stream.h
@@ -219,8 +219,16 @@ class Blob {
size_t cheap_hash() const { return *data; }
void serialize(DataStream &s) const {
- for (const _impl_type *ptr = data; ptr < data + _len; ptr++)
- s << htole(*ptr);
+ if (loaded)
+ {
+ for (const _impl_type *ptr = data; ptr < data + _len; ptr++)
+ s << htole(*ptr);
+ }
+ else
+ {
+ for (const _impl_type *ptr = data; ptr < data + _len; ptr++)
+ s << htole((_impl_type)0);
+ }
}
void unserialize(DataStream &s) {
@@ -230,6 +238,7 @@ class Blob {
s >> x;
*ptr = letoh(x);
}
+ loaded = true;
}
};