diff options
author | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-25 19:29:13 +0000 |
---|---|---|
committer | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-25 19:29:13 +0000 |
commit | 37ebbbe7b11febaf548006a9b73db0eebf79881a (patch) | |
tree | 61b33bfceb94acec99084a416397d2838018b160 /geometry.c | |
parent | 287ac4c6af61d8f9f95cd3b3219c979e1329a2fe (diff) |
XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folksxf86-4_3_99_901xf86-4_3_99_16
Diffstat (limited to 'geometry.c')
-rw-r--r-- | geometry.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -24,7 +24,7 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE. ********************************************************/ -/* $XFree86: xc/programs/xkbcomp/geometry.c,v 1.4 2002/06/05 00:00:37 dawes Exp $ */ +/* $XFree86: xc/programs/xkbcomp/geometry.c,v 1.5 2003/08/06 14:04:05 eich Exp $ */ #include "xkbcomp.h" #include "tokens.h" @@ -280,11 +280,11 @@ PropertyInfo * next; info->nProps= 0; } for (tmp=pi;tmp!=NULL;tmp=next) { - if (pi->name) - uFree(pi->name); - if (pi->value) - uFree(pi->value); - pi->name= pi->value=NULL; + if (tmp->name) + uFree(tmp->name); + if (tmp->value) + uFree(tmp->value); + tmp->name= tmp->value=NULL; next= (PropertyInfo *)tmp->defs.next; uFree(tmp); } |