X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=ncurses%2Fbase%2Fwresize.c;h=ac808c4d2884ca10637b10afcf4f8410d522f0ba;hp=ae62806e02fc355598827f6a0e8979692721e165;hb=ed530db2c5b10aa19d06104dfe82cf248a813860;hpb=e6c7286022d8a7a7ea7f15a6ffa7f9addb00e42d diff --git a/ncurses/base/wresize.c b/ncurses/base/wresize.c index ae62806e..ac808c4d 100644 --- a/ncurses/base/wresize.c +++ b/ncurses/base/wresize.c @@ -1,5 +1,5 @@ /**************************************************************************** - * Copyright (c) 1998-2006,2007 Free Software Foundation, Inc. * + * Copyright (c) 1998-2007,2008 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 * @@ -32,7 +32,7 @@ #include -MODULE_ID("$Id: wresize.c,v 1.26 2007/09/29 20:37:13 tom Exp $") +MODULE_ID("$Id: wresize.c,v 1.28 2008/05/03 14:13:51 tom Exp $") static int cleanup_lines(struct ldat *data, int length) @@ -54,7 +54,9 @@ repair_subwindows(WINDOW *cmp) struct ldat *pline = cmp->_line; int row; - for (wp = _nc_windows; wp != 0; wp = wp->next) { + _nc_lock_global(windowlist); + + for (each_window(wp)) { WINDOW *tst = &(wp->win); if (tst->_parent == cmp) { @@ -75,6 +77,7 @@ repair_subwindows(WINDOW *cmp) repair_subwindows(tst); } } + _nc_unlock_global(windowlist); } /*