Merge "Fix handle_opendir() in the sdcard daemon" into klp-dev

This commit is contained in:
Ken Sumrall 2013-08-15 03:28:31 +00:00 committed by Android (Google) Code Review
commit 57d4b4ea6f
1 changed files with 2 additions and 0 deletions

View File

@ -1321,6 +1321,8 @@ static int handle_opendir(struct fuse* fuse, struct fuse_handler* handler,
return -errno;
}
out.fh = ptr_to_id(h);
out.open_flags = 0;
out.padding = 0;
fuse_reply(fuse, hdr->unique, &out, sizeof(out));
return NO_STATUS;
}