commit | 11257e5a43ac47666dd2ffb4b15fcff8ceb045a9 | [log] [tgz] |
---|---|---|
author | Russ Cox <rsc@swtch.com> | Sun Oct 26 17:03:17 2008 -0400 |
committer | Russ Cox <rsc@swtch.com> | Sun Oct 26 17:03:17 2008 -0400 |
tree | 8b6a93ca51ef55db5319eba3a357f15c8d3cf60c | |
parent | 589ae3a36793c46a8e92682efd2c7d17a98572b3 [diff] |
lib9: null d->ext during nulldir
diff --git a/src/lib9/nulldir.c b/src/lib9/nulldir.c index 612725d..302b996 100644 --- a/src/lib9/nulldir.c +++ b/src/lib9/nulldir.c
@@ -5,5 +5,5 @@ nulldir(Dir *d) { memset(d, ~0, sizeof(Dir)); - d->name = d->uid = d->gid = d->muid = ""; + d->name = d->uid = d->gid = d->muid = d->ext = ""; }