aboutsummaryrefslogtreecommitdiff
path: root/src/lib9pclient
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib9pclient')
-rw-r--r--src/lib9pclient/fs.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib9pclient/fs.c b/src/lib9pclient/fs.c
index dfb3bc9f..eda023bc 100644
--- a/src/lib9pclient/fs.c
+++ b/src/lib9pclient/fs.c
@@ -94,7 +94,8 @@ _fsdecref(CFsys *fs)
--fs->ref;
//fprint(2, "fsdecref %p to %d\n", fs, fs->ref);
if(fs->ref == 0){
- close(fs->fd);
+ if(fs->fd >= 0)
+ close(fs->fd);
/* trim the list down to just the first in each chunk */
for(l=&fs->freefid; *l; ){
if((*l)->fid%CFidchunk == 0)