VfPendingCheckForChanges

VOID __stdcall VfPendingCheckForChanges(UINT64 Settings){
  VOID *PoolWithTagPriority; 
  if( (Settings & 0x200) != 0 && !VfForcedPendingLog )
  {
    if( (unsigned int)VfForcedPendingLogLength > 0x100000 )
      VfForcedPendingLogLength = 0x100000;
    PoolWithTagPriority = ExAllocatePoolWithTagPriority(
                            NonPagedPoolNx,
                            (unsigned __int64)(unsigned int)VfForcedPendingLogLength << 9,
                            0x50466656ui64,
                            HighPoolPriority);
    VfForcedPendingLog = (__int64)PoolWithTagPriority;
    if( PoolWithTagPriority )
      memset((INT64)PoolWithTagPriority, 0i64);
  }
}

Referenced by:

VfInitVerifierComponents
VfSettingsCheckForChanges