X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=ncurses%2Ftinfo%2Ffree_ttype.c;h=ad056ba4545b55feb9d9254ff17fe30f970d0aeb;hp=2e714e488e8e64765082f6624653fdc928a617cb;hb=ef2d99350e0d3e4606171b5b1466ab92ec440205;hpb=55ccd2b959766810cf7db8d1c4462f338ce0afc8;ds=sidebyside diff --git a/ncurses/tinfo/free_ttype.c b/ncurses/tinfo/free_ttype.c index 2e714e48..ad056ba4 100644 --- a/ncurses/tinfo/free_ttype.c +++ b/ncurses/tinfo/free_ttype.c @@ -1,5 +1,5 @@ /**************************************************************************** - * Copyright (c) 1999-2003,2005 Free Software Foundation, Inc. * + * Copyright (c) 1999-2010,2011 Free Software Foundation, Inc. * * * * Permission is hereby granted, free of charge, to any person obtaining a * * copy of this software and associated documentation files (the * @@ -27,7 +27,7 @@ ****************************************************************************/ /**************************************************************************** - * Author: Thomas E. Dickey 1999 * + * Author: Thomas E. Dickey 1999-on * ****************************************************************************/ /* @@ -41,45 +41,14 @@ #include #include -#include -MODULE_ID("$Id: free_ttype.c,v 1.11 2005/06/04 21:54:50 tom Exp $") +MODULE_ID("$Id: free_ttype.c,v 1.15 2011/02/06 01:08:31 tom Exp $") NCURSES_EXPORT(void) _nc_free_termtype(TERMTYPE *ptr) { T(("_nc_free_termtype(%s)", ptr->term_names)); - if (ptr->str_table == 0 - || (ptr->term_names < ptr->str_table - || ptr->term_names >= ptr->str_table + MAX_ENTRY_SIZE)) { - FreeIfNeeded(ptr->term_names); - } -#if NO_LEAKS - else { - if (ptr->str_table != 0 - && (ptr->term_names < ptr->str_table + MAX_ENTRY_SIZE)) { - int j; - char *last = ptr->str_table; - /* - * We should have saved the entry-size someplace. Too late, - * but this is useful for the memory-leak checking, though more - * work/time than should be in the normal library. - */ - for (j = 0; j < NUM_STRINGS(ptr); j++) { - char *s = ptr->Strings[j]; - if (VALID_STRING(s)) { - char *t = s + strlen(s) + 1; - if (t > last) - last = t; - } - } - if (last < ptr->term_names) { - FreeIfNeeded(ptr->term_names); - } - } - } -#endif FreeIfNeeded(ptr->str_table); FreeIfNeeded(ptr->Booleans); FreeIfNeeded(ptr->Numbers); @@ -100,6 +69,7 @@ use_extended_names(bool flag) { int oldflag = _nc_user_definable; + START_TRACE(); T((T_CALLED("use_extended_names(%d)"), flag)); _nc_user_definable = flag; returnBool(oldflag);