fixed another x64 serialisation bug in FeedReader (see rev8396)(thanks to Eugene Tooms)

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@8400 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
electron128 2015-06-08 12:20:17 +00:00
parent 6b923c4305
commit a78e80b9f8

View File

@ -81,7 +81,7 @@ uint32_t RsFeedReaderSerialiser::sizeFeed(RsFeedReaderFeed *item)
s += GetTlvStringSize(item->proxyAddress);
s += sizeof(uint16_t); /* proxyPort */
s += sizeof(uint32_t); /* updateInterval */
s += sizeof(time_t); /* lastscan */
s += sizeof(uint32_t); /* lastUpdate */
s += sizeof(uint32_t); /* storageTime */
s += sizeof(uint32_t); /* flag */
s += GetTlvStringSize(item->forumId);