X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=ncurses%2Fbase%2Flib_ungetch.c;h=32f9f82f62346fde0de6b25c8afbcbb28312dc91;hp=54a8998fbbb3f6d4b53c4028d7c88c3d030a5477;hb=b0916ab669030bac5c8590c0d66e36e1b9b34e9b;hpb=7a6bbc8cf41c5186d46accc3d08622dc86526b34;ds=sidebyside diff --git a/ncurses/base/lib_ungetch.c b/ncurses/base/lib_ungetch.c index 54a8998f..32f9f82f 100644 --- a/ncurses/base/lib_ungetch.c +++ b/ncurses/base/lib_ungetch.c @@ -1,5 +1,5 @@ /**************************************************************************** - * Copyright (c) 1998-2008,2009 Free Software Foundation, Inc. * + * Copyright (c) 1998-2009,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 * @@ -42,7 +42,7 @@ #include -MODULE_ID("$Id: lib_ungetch.c,v 1.13 2009/04/18 20:30:12 tom Exp $") +MODULE_ID("$Id: lib_ungetch.c,v 1.15 2011/05/28 22:52:06 tom Exp $") #include @@ -62,9 +62,9 @@ safe_ungetch(SCREEN *sp, int ch) { int rc = ERR; - T((T_CALLED("ungetch(%p,%s)"), sp, _nc_tracechar(sp, ch))); + T((T_CALLED("ungetch(%p,%s)"), (void *) sp, _nc_tracechar(sp, ch))); - if (tail != -1) { + if (sp != 0 && tail != -1) { if (head == -1) { head = 0; t_inc();