- Add missing break in ExDereferenceCallBackBlock so ExReleaseRundownProtection does not get called more than once.

svn path=/trunk/; revision=38223
This commit is contained in:
Michael Martin 2008-12-21 06:01:23 +00:00
parent f082d72190
commit 13ee594843

View file

@ -137,6 +137,9 @@ ExDereferenceCallBackBlock(IN OUT PEX_CALLBACK CallBack,
{
/* Release rundown protection */
ExReleaseRundownProtection(&CallbackRoutineBlock->RundownProtect);
/* We're all done */
break;
}
}
}