projects
/
ncurses.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
ncurses 6.0 - patch 20170812
[ncurses.git]
/
ncurses
/
tinfo
/
free_ttype.c
diff --git
a/ncurses/tinfo/free_ttype.c
b/ncurses/tinfo/free_ttype.c
index b8b9c592037dae13ff9744a287391a72cc65e8a1..351cda933c7539347c08e1cceadfb36e0ddb3620 100644
(file)
--- a/
ncurses/tinfo/free_ttype.c
+++ b/
ncurses/tinfo/free_ttype.c
@@
-1,5
+1,5
@@
/****************************************************************************
/****************************************************************************
- * Copyright (c) 1999-20
00,2002
Free Software Foundation, Inc. *
+ * Copyright (c) 1999-20
11,2017
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 *
* *
* 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
<dickey@clark.net> 1999
*
+ * Author: Thomas E. Dickey
1999-on
*
****************************************************************************/
/*
****************************************************************************/
/*
@@
-41,24
+41,47
@@
#include <curses.priv.h>
#include <tic.h>
#include <curses.priv.h>
#include <tic.h>
-#include <term_entry.h>
-MODULE_ID("$Id: free_ttype.c,v 1.
8 2002/09/01 20:29:03
tom Exp $")
+MODULE_ID("$Id: free_ttype.c,v 1.
17 2017/04/13 01:06:04
tom Exp $")
-NCURSES_EXPORT(void)
-
_nc_free_termtype(TERMTYPE * ptr
)
+static void
+
really_free_termtype(TERMTYPE2 *ptr, bool freeStrings
)
{
{
- FreeIfNeeded(ptr->str_table);
+ T(("_nc_free_termtype(%s)", ptr->term_names));
+
+ if (freeStrings) {
+ FreeIfNeeded(ptr->str_table);
+ }
FreeIfNeeded(ptr->Booleans);
FreeIfNeeded(ptr->Numbers);
FreeIfNeeded(ptr->Strings);
#if NCURSES_XNAMES
FreeIfNeeded(ptr->Booleans);
FreeIfNeeded(ptr->Numbers);
FreeIfNeeded(ptr->Strings);
#if NCURSES_XNAMES
- FreeIfNeeded(ptr->ext_str_table);
+ if (freeStrings) {
+ FreeIfNeeded(ptr->ext_str_table);
+ }
FreeIfNeeded(ptr->ext_Names);
#endif
memset(ptr, 0, sizeof(TERMTYPE));
FreeIfNeeded(ptr->ext_Names);
#endif
memset(ptr, 0, sizeof(TERMTYPE));
+ _nc_free_entry(_nc_head, ptr);
+}
+
+/*
+ * This entrypoint is used by tack.
+ */
+NCURSES_EXPORT(void)
+_nc_free_termtype(TERMTYPE *ptr)
+{
+ really_free_termtype((TERMTYPE2 *) ptr, !NCURSES_EXT_NUMBERS);
}
}
+#if NCURSES_EXT_NUMBERS
+NCURSES_EXPORT(void)
+_nc_free_termtype2(TERMTYPE2 *ptr)
+{
+ really_free_termtype(ptr, TRUE);
+}
+#endif
+
#if NCURSES_XNAMES
NCURSES_EXPORT_VAR(bool) _nc_user_definable = TRUE;
#if NCURSES_XNAMES
NCURSES_EXPORT_VAR(bool) _nc_user_definable = TRUE;
@@
-66,7
+89,10
@@
NCURSES_EXPORT(int)
use_extended_names(bool flag)
{
int oldflag = _nc_user_definable;
use_extended_names(bool flag)
{
int oldflag = _nc_user_definable;
+
+ START_TRACE();
+ T((T_CALLED("use_extended_names(%d)"), flag));
_nc_user_definable = flag;
_nc_user_definable = flag;
- return
oldflag
;
+ return
Bool(oldflag)
;
}
#endif
}
#endif