comparison tag.c @ 272:be40a56df248

fixed a core dump
author Anselm R.Garbe <arg@10ksloc.org>
date Mon, 14 Aug 2006 10:49:22 +0200
parents dacd3f3c5823
children 9a0a351dd910
comparison
equal deleted inserted replaced
271:e9dc5a9f9480 272:be40a56df248
209 if(c->isfloat || arrange == dofloat) 209 if(c->isfloat || arrange == dofloat)
210 f++; 210 f++;
211 else 211 else
212 m++; 212 m++;
213 } 213 }
214 214 if(!(n = 2 * (f + m))) {
215 n = 2 * (f + m); 215 drawstatus();
216 return;
217 }
216 if(nwins < n) { 218 if(nwins < n) {
217 nwins = n; 219 nwins = n;
218 wins = erealloc(wins, nwins * sizeof(Window)); 220 wins = erealloc(wins, nwins * sizeof(Window));
219 } 221 }
220 222