mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-04 05:48:20 +08:00
* compressed_output.cc (zlib_decompress): Fix signature in
!HAVE_ZLIB_H case.
This commit is contained in:
@ -1,5 +1,8 @@
|
|||||||
2010-07-13 Ian Lance Taylor <iant@google.com>
|
2010-07-13 Ian Lance Taylor <iant@google.com>
|
||||||
|
|
||||||
|
* compressed_output.cc (zlib_decompress): Fix signature in
|
||||||
|
!HAVE_ZLIB_H case.
|
||||||
|
|
||||||
* archive.cc (Archive::include_member): Unlock an external member
|
* archive.cc (Archive::include_member): Unlock an external member
|
||||||
of a thin archive. Don't bother to delete an object we know is
|
of a thin archive. Don't bother to delete an object we know is
|
||||||
NULL.
|
NULL.
|
||||||
|
@ -135,7 +135,7 @@ zlib_compress(const unsigned char*, unsigned long,
|
|||||||
|
|
||||||
static bool
|
static bool
|
||||||
zlib_decompress(const unsigned char*, unsigned long,
|
zlib_decompress(const unsigned char*, unsigned long,
|
||||||
unsigned char**, unsigned long*)
|
unsigned char*, unsigned long)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user