Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 26 Jun 2011 09:49:03 GMT
From:      Ilya Putsikau <ilya@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 195350 for review
Message-ID:  <201106260949.p5Q9n3ss010862@skunkworks.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://p4web.freebsd.org/@@195350?ac=10

Change 195350 by ilya@ilya_triton2011 on 2011/06/26 09:48:06

	Fix for a rare (!) uninitialized field bug in vnop_setattr()
	http://macfuse.googlecode.com/svn/trunk@881

Affected files ...

.. //depot/projects/soc2011/ilya_fuse/fuse_module/fuse_vnops.c#23 edit

Differences ...

==== //depot/projects/soc2011/ilya_fuse/fuse_module/fuse_vnops.c#23 (text+ko) ====

@@ -1584,6 +1584,7 @@
     fdisp_init(&fdi, sizeof(*fsai));
     fdisp_make_vp(&fdi, FUSE_SETATTR, vp, td, cred);
     fsai = fdi.indata;
+    fsai->valid = 0;
 
     bzero(&facp, sizeof(facp));
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201106260949.p5Q9n3ss010862>