Merge pull request #523 from bryongloden/patch-1

[libretroshare][file_sharing] fix undefined behavior
This commit is contained in:
Cyril Soler 2016-10-01 18:09:39 +02:00 committed by GitHub
commit 20397c38ec

View file

@ -76,7 +76,7 @@ void HashStorage::data_tick()
{ {
FileHashJob job; FileHashJob job;
RsFileHash hash; RsFileHash hash;
uint64_t size ; uint64_t size = 0;
{ {
bool empty ; bool empty ;