| OLD | NEW |
| 1 /* pngmem.c - stub functions for memory allocation | 1 /* pngmem.c - stub functions for memory allocation |
| 2 * | 2 * |
| 3 * Last changed in libpng 1.6.0 [February 14, 2013] | 3 * Last changed in libpng 1.6.0 [February 14, 2013] |
| 4 * Copyright (c) 1998-2013 Glenn Randers-Pehrson | 4 * Copyright (c) 1998-2013 Glenn Randers-Pehrson |
| 5 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) | 5 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) |
| 6 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.) | 6 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.) |
| 7 * | 7 * |
| 8 * This code is released under the libpng license. | 8 * This code is released under the libpng license. |
| 9 * For conditions of distribution and use, see the disclaimer | 9 * For conditions of distribution and use, see the disclaimer |
| 10 * and license in png.h | 10 * and license in png.h |
| (...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 png_voidp PNGAPI | 280 png_voidp PNGAPI |
| 281 png_get_mem_ptr(png_const_structrp png_ptr) | 281 png_get_mem_ptr(png_const_structrp png_ptr) |
| 282 { | 282 { |
| 283 if (png_ptr == NULL) | 283 if (png_ptr == NULL) |
| 284 return NULL; | 284 return NULL; |
| 285 | 285 |
| 286 return png_ptr->mem_ptr; | 286 return png_ptr->mem_ptr; |
| 287 } | 287 } |
| 288 #endif /* PNG_USER_MEM_SUPPORTED */ | 288 #endif /* PNG_USER_MEM_SUPPORTED */ |
| 289 #endif /* PNG_READ_SUPPORTED || PNG_WRITE_SUPPORTED */ | 289 #endif /* PNG_READ_SUPPORTED || PNG_WRITE_SUPPORTED */ |
| OLD | NEW |