mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-07 14:12:43 -04:00
Merge pull request #523 from bryongloden/patch-1
[libretroshare][file_sharing] fix undefined behavior
This commit is contained in:
commit
20397c38ec
1 changed files with 1 additions and 1 deletions
|
@ -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 ;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue