| OLD | NEW |
| 1 /* Compressed section support (intended for debug sections). | 1 /* Compressed section support (intended for debug sections). |
| 2 Copyright 2008, 2010, 2011 | 2 Copyright 2008, 2010, 2011, 2012 |
| 3 Free Software Foundation, Inc. | 3 Free Software Foundation, Inc. |
| 4 | 4 |
| 5 This file is part of BFD, the Binary File Descriptor library. | 5 This file is part of BFD, the Binary File Descriptor library. |
| 6 | 6 |
| 7 This program is free software; you can redistribute it and/or modify | 7 This program is free software; you can redistribute it and/or modify |
| 8 it under the terms of the GNU General Public License as published by | 8 it under the terms of the GNU General Public License as published by |
| 9 the Free Software Foundation; either version 3 of the License, or | 9 the Free Software Foundation; either version 3 of the License, or |
| 10 (at your option) any later version. | 10 (at your option) any later version. |
| 11 | 11 |
| 12 This program is distributed in the hope that it will be useful, | 12 This program is distributed in the hope that it will be useful, |
| 13 but WITHOUT ANY WARRANTY; without even the implied warranty of | 13 but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 GNU General Public License for more details. | 15 GNU General Public License for more details. |
| 16 | 16 |
| 17 You should have received a copy of the GNU General Public License | 17 You should have received a copy of the GNU General Public License |
| 18 along with this program; if not, write to the Free Software | 18 along with this program; if not, write to the Free Software |
| 19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, | 19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, |
| 20 MA 02110-1301, USA. */ | 20 MA 02110-1301, USA. */ |
| 21 | 21 |
| 22 #include "config.h" | |
| 23 #include "sysdep.h" | 22 #include "sysdep.h" |
| 24 #include "bfd.h" | 23 #include "bfd.h" |
| 25 #include "libbfd.h" | 24 #include "libbfd.h" |
| 26 #ifdef HAVE_ZLIB_H | 25 #ifdef HAVE_ZLIB_H |
| 27 #include <zlib.h> | 26 #include <zlib.h> |
| 28 #endif | 27 #endif |
| 29 | 28 |
| 30 #ifdef HAVE_ZLIB_H | 29 #ifdef HAVE_ZLIB_H |
| 31 static bfd_boolean | 30 static bfd_boolean |
| 32 decompress_contents (bfd_byte *compressed_buffer, | 31 decompress_contents (bfd_byte *compressed_buffer, |
| (...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 391 ret = FALSE; | 390 ret = FALSE; |
| 392 else | 391 else |
| 393 ret = bfd_compress_section_contents (abfd, sec, | 392 ret = bfd_compress_section_contents (abfd, sec, |
| 394 uncompressed_buffer, | 393 uncompressed_buffer, |
| 395 uncompressed_size); | 394 uncompressed_size); |
| 396 | 395 |
| 397 free (uncompressed_buffer); | 396 free (uncompressed_buffer); |
| 398 return ret; | 397 return ret; |
| 399 #endif | 398 #endif |
| 400 } | 399 } |
| OLD | NEW |