diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2018-04-02 14:43:47 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2018-04-02 14:43:47 (GMT) |
commit | f9404bf68a067b06986cd85855c43795ec578dbd (patch) | |
tree | 57f481aced2c69ddf6ac9766f310be86ebe03f6f /src/analysis/db/misc | |
parent | d69503d7aeceddc52dfee9481e6a0e8ba9c1fc85 (diff) |
Removed lots of uninitialized uses, mostly in NDEBUG mode.
Diffstat (limited to 'src/analysis/db/misc')
-rw-r--r-- | src/analysis/db/misc/rlestr.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/analysis/db/misc/rlestr.c b/src/analysis/db/misc/rlestr.c index c1d2d95..43bbac4 100644 --- a/src/analysis/db/misc/rlestr.c +++ b/src/analysis/db/misc/rlestr.c @@ -265,8 +265,7 @@ bool unpack_rle_string(rle_string *str, packed_buffer *pbuf) bool result; /* Bilan à retourner */ uint32_t tmp32; /* Valeur sur 32 bits */ - str->data = NULL; - str->length = 0; + unset_rle_string(str); result = extract_packed_buffer(pbuf, &tmp32, sizeof(uint32_t), true); |