Expand Minimize
0 out of 1 rated this helpful - Rate this topic

C28125

Visual Studio 2012

warning C28125: The function must be called from within a try/except block

The driver is calling a function that must be called from within a try/except block, such as ProbeForRead, ProbeForWrite, MmProbeAndLockPages.

The following code example generates this warning:

ProbeForRead(addr, len, 4);

The following code example avoids this warning:

__try
{
    ProbeForRead(addr, len, 4);
}
__except(EXCEPTION_EXECUTE_HANDLER)
{
    Status = GetExceptionCode();
    ... report error status
}
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.