mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Avcoid coverity warning
This commit is contained in:
parent
32f306b615
commit
1ddcb25b7e
1 changed files with 1 additions and 1 deletions
|
@ -332,7 +332,7 @@ randombytes(uint8_t *buf, unsigned len)
|
|||
}
|
||||
stream.next_out = dst + stream.total_out;
|
||||
stream.avail_out = (unsigned)(capacity - stream.total_out);
|
||||
deflate(&stream, Z_FINISH);
|
||||
(void)deflate(&stream, Z_FINISH);
|
||||
}
|
||||
deflateEnd(&stream);
|
||||
result = [NSMutableData alloc];
|
||||
|
|
Loading…
Reference in a new issue