mirror of
https://git.openafs.org/openafs.git
synced 2025-01-21 00:10:15 +00:00
Windows: init section ptrs for pioctl files
FIXES 130783 Change-Id: I809d21d5d30727172d6e1026d99b32466fcc74c6 Reviewed-on: http://gerrit.openafs.org/7407 Tested-by: BuildBot <buildbot@rampaginggeek.com> Reviewed-by: Jeffrey Altman <jaltman@secure-endpoints.com> Tested-by: Jeffrey Altman <jaltman@secure-endpoints.com>
This commit is contained in:
parent
ac08a0c30d
commit
97581f7510
@ -1140,9 +1140,15 @@ try_exit:
|
||||
// For files perform additional processing
|
||||
//
|
||||
|
||||
if( pFcb->Header.NodeTypeCode == AFS_FILE_FCB)
|
||||
switch( pFcb->Header.NodeTypeCode)
|
||||
{
|
||||
pFileObject->SectionObjectPointer = &pFcb->NPFcb->SectionObjectPointers;
|
||||
|
||||
case AFS_FILE_FCB:
|
||||
case AFS_IOCTL_FCB:
|
||||
{
|
||||
|
||||
pFileObject->SectionObjectPointer = &pFcb->NPFcb->SectionObjectPointers;
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
|
Loading…
Reference in New Issue
Block a user