X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=ncurses%2Ftinfo%2Fcomp_error.c;h=68d6e48a1dba88bb0992349da32bf14972cee0e0;hp=015f34886eb12b21f44b26cafd126b8aa3f3bb9f;hb=048a1c1a65c6d98d92fca97f8d175d10d21091d0;hpb=027ae42953e3186daed8f3882da73de48291b606 diff --git a/ncurses/tinfo/comp_error.c b/ncurses/tinfo/comp_error.c index 015f3488..68d6e48a 100644 --- a/ncurses/tinfo/comp_error.c +++ b/ncurses/tinfo/comp_error.c @@ -1,5 +1,5 @@ /**************************************************************************** - * Copyright (c) 1998-2002,2005 Free Software Foundation, Inc. * + * Copyright (c) 1998-2012,2016 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 * @@ -41,36 +41,39 @@ #include -MODULE_ID("$Id: comp_error.c,v 1.30 2005/11/26 15:28:47 tom Exp $") +MODULE_ID("$Id: comp_error.c,v 1.37 2016/09/10 20:26:29 tom Exp $") NCURSES_EXPORT_VAR(bool) _nc_suppress_warnings = FALSE; NCURSES_EXPORT_VAR(int) _nc_curr_line = 0; /* current line # in input */ NCURSES_EXPORT_VAR(int) _nc_curr_col = 0; /* current column # in input */ -static const char *sourcename; -static char *termtype; +#define SourceName _nc_globals.comp_sourcename +#define TermType _nc_globals.comp_termtype NCURSES_EXPORT(const char *) _nc_get_source(void) { - return sourcename; + return SourceName; } NCURSES_EXPORT(void) _nc_set_source(const char *const name) { - sourcename = name; + FreeIfNeeded(SourceName); + SourceName = strdup(name); } NCURSES_EXPORT(void) _nc_set_type(const char *const name) { - if (termtype == 0) - termtype = typeMalloc(char, MAX_NAME_SIZE + 1); - if (termtype != 0) { - termtype[0] = '\0'; - if (name) - strncat(termtype, name, MAX_NAME_SIZE); +#define MY_SIZE (size_t) MAX_NAME_SIZE + if (TermType == 0) + TermType = typeMalloc(char, MY_SIZE + 1); + if (TermType != 0) { + TermType[0] = '\0'; + if (name) { + _nc_STRNCAT(TermType, name, MY_SIZE, MY_SIZE); + } } } @@ -78,25 +81,25 @@ NCURSES_EXPORT(void) _nc_get_type(char *name) { #if NO_LEAKS - if (name == 0 && termtype != 0) { - FreeAndNull(termtype); + if (name == 0 && TermType != 0) { + FreeAndNull(TermType); return; } #endif if (name != 0) - strcpy(name, termtype != 0 ? termtype : ""); + _nc_STRCPY(name, TermType != 0 ? TermType : "", MAX_NAME_SIZE); } static NCURSES_INLINE void where_is_problem(void) { - fprintf(stderr, "\"%s\"", sourcename); + fprintf(stderr, "\"%s\"", SourceName ? SourceName : "?"); if (_nc_curr_line >= 0) fprintf(stderr, ", line %d", _nc_curr_line); if (_nc_curr_col >= 0) fprintf(stderr, ", col %d", _nc_curr_col); - if (termtype != 0 && termtype[0] != '\0') - fprintf(stderr, ", terminal '%s'", termtype); + if (TermType != 0 && TermType[0] != '\0') + fprintf(stderr, ", terminal '%s'", TermType); fputc(':', stderr); fputc(' ', stderr); } @@ -151,3 +154,12 @@ _nc_syserr_abort(const char *const fmt,...) exit(EXIT_FAILURE); #endif } + +#if NO_LEAKS +NCURSES_EXPORT(void) +_nc_comp_error_leaks(void) +{ + FreeAndNull(SourceName); + FreeAndNull(TermType); +} +#endif