X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=ncurses%2Fbase%2Ftries.c;h=c00ef20b7d828ade9c44d75bfd6302d037f33495;hp=a346decc96eaa9c45bc5536d64701f338aafd904;hb=03a795bde58b3280a4e9d80029a3b7fec13c79ad;hpb=f70db18a0c3c6a828d8a5999be37239f01c9d98a diff --git a/ncurses/base/tries.c b/ncurses/base/tries.c index a346decc..c00ef20b 100644 --- a/ncurses/base/tries.c +++ b/ncurses/base/tries.c @@ -1,5 +1,5 @@ /**************************************************************************** - * Copyright (c) 1998-2005,2006 Free Software Foundation, Inc. * + * Copyright (c) 1998-2006,2007 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 * @@ -39,7 +39,7 @@ #include -MODULE_ID("$Id: tries.c,v 1.23 2006/12/30 16:26:54 tom Exp $") +MODULE_ID("$Id: tries.c,v 1.24 2007/04/07 17:14:27 tom Exp $") /* * Expand a keycode into the string that it corresponds to, returning null if @@ -68,7 +68,7 @@ _nc_expand_try(TRIES * tree, unsigned code, int *count, size_t len) } } if (result != 0) { - if ((result[len] = ptr->ch) == 0) + if (ptr != 0 && (result[len] = ptr->ch) == 0) *((unsigned char *) (result + len)) = 128; #ifdef TRACE if (len == 0 && _nc_tracing != 0)