mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-07-28 00:45:34 -04:00
uninitialized variable: size
[libretroshare/src/file_sharing/hash_cache.cc:182]: (error) Uninitialized variable: size Found by https://github.com/bryongloden/cppcheck
This commit is contained in:
parent
a75115585b
commit
9ae05112be
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