Fixed a but on walk where fid == newfid.

This commit is contained in:
Kris Maglione 2007-02-20 20:37:16 -05:00
parent 9fd22b12f9
commit 7b0ecf7cf8
1 changed files with 6 additions and 6 deletions

12
fs.c
View File

@ -536,14 +536,14 @@ fs_walk(P9Req *r) {
/* If Fids were ref counted, this could be
* done in their decref function */
if(r->ifcall.fid == r->ifcall.newfid) {
nf=r->fid->aux;
nf = r->fid->aux;
r->fid->aux = f;
while((nf = f)) {
f=f->next;
free_file(nf);
while((f = nf)) {
nf = nf->next;
free_file(f);
}
}
r->newfid->aux = f;
}else
r->newfid->aux = f;
r->ofcall.nwqid = i;
respond(r, nil);
}