comparison os2/dw.c @ 147:b479002e013f

Upped the DW revision to 1.0, and merged with the latest code in the FX repository.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Wed, 23 Oct 2002 14:34:29 +0000
parents 6a18312049fd
children 2a0d7b57a6da
comparison
equal deleted inserted replaced
146:add6b46310c2 147:b479002e013f
7123 { 7123 {
7124 if(all || stricmp(tmp->varname, varname) == 0) 7124 if(all || stricmp(tmp->varname, varname) == 0)
7125 { 7125 {
7126 if(!prev) 7126 if(!prev)
7127 { 7127 {
7128 *root = tmp->next;
7128 free(tmp->varname); 7129 free(tmp->varname);
7129 free(tmp); 7130 free(tmp);
7130 *root = tmp->next;
7131 return 0; 7131 return 0;
7132 } 7132 }
7133 else 7133 else
7134 { 7134 {
7135 prev->next = tmp->next; 7135 prev->next = tmp->next;