On 29/09/2017 13:13, Michael Fritscher wrote: > Signed-off-by: Michael Fritscher <mich...@fritscher.net> > --- > hw/9pfs/9p-synth.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/hw/9pfs/9p-synth.c b/hw/9pfs/9p-synth.c > index df0a8de08a..e1bf0438b8 100644 > --- a/hw/9pfs/9p-synth.c > +++ b/hw/9pfs/9p-synth.c > @@ -150,8 +150,10 @@ static void synth_fill_statbuf(V9fsSynthNode *node, > struct stat *stbuf) > stbuf->st_gid = 0; > stbuf->st_rdev = 0; > stbuf->st_size = 0; > +#ifndef _WIN32 > stbuf->st_blksize = 0; > stbuf->st_blocks = 0; > +#endif > stbuf->st_atime = 0; > stbuf->st_mtime = 0; > stbuf->st_ctime = 0; >
Just memset the whole stbuf instead, and then overwrite st_ino/st_mode/st_nlink. Paolo