diff options
| author | Russ Cox <rsc@swtch.com> | 2008-10-26 17:03:17 -0400 |
|---|---|---|
| committer | Russ Cox <rsc@swtch.com> | 2008-10-26 17:03:17 -0400 |
| commit | 11257e5a43ac47666dd2ffb4b15fcff8ceb045a9 (patch) | |
| tree | 8b6a93ca51ef55db5319eba3a357f15c8d3cf60c /src | |
| parent | 589ae3a36793c46a8e92682efd2c7d17a98572b3 (diff) | |
| download | plan9port-11257e5a43ac47666dd2ffb4b15fcff8ceb045a9.tar.gz plan9port-11257e5a43ac47666dd2ffb4b15fcff8ceb045a9.zip | |
lib9: null d->ext during nulldir
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib9/nulldir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib9/nulldir.c b/src/lib9/nulldir.c index 612725d8..302b996c 100644 --- a/src/lib9/nulldir.c +++ b/src/lib9/nulldir.c @@ -5,5 +5,5 @@ void 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 = ""; } |
