< prev index next >

src/java.desktop/share/native/libfreetype/src/base/ftdbgmem.c

Print this page

        

*** 2,12 **** * * ftdbgmem.c * * Memory debugger (body). * ! * Copyright (C) 2001-2019 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, * modified, and distributed under the terms of the FreeType project * license, LICENSE.TXT. By continuing to use, modify, or distribute --- 2,12 ---- * * ftdbgmem.c * * Memory debugger (body). * ! * Copyright (C) 2001-2020 by * David Turner, Robert Wilhelm, and Werner Lemberg. * * This file is part of the FreeType project, and may only be used, * modified, and distributed under the terms of the FreeType project * license, LICENSE.TXT. By continuing to use, modify, or distribute
*** 619,630 **** FT_MemSource source; if ( node->size < 0 ) ft_mem_debug_panic( ! "freeing memory block at %p more than once at (%s:%ld)\n" ! "block allocated at (%s:%ld) and released at (%s:%ld)", address, FT_FILENAME( _ft_debug_file ), _ft_debug_lineno, FT_FILENAME( node->source->file_name ), node->source->line_no, FT_FILENAME( node->free_file_name ), node->free_line_no ); --- 619,632 ---- FT_MemSource source; if ( node->size < 0 ) ft_mem_debug_panic( ! "freeing memory block at %p more than once\n" ! " at (%s:%ld)!\n" ! " Block was allocated at (%s:%ld)\n" ! " and released at (%s:%ld).", address, FT_FILENAME( _ft_debug_file ), _ft_debug_lineno, FT_FILENAME( node->source->file_name ), node->source->line_no, FT_FILENAME( node->free_file_name ), node->free_line_no );
< prev index next >