diff options
-rw-r--r-- | src/vm/eetwain.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vm/eetwain.cpp b/src/vm/eetwain.cpp index f9735237fd..c0eb7aa8d0 100644 --- a/src/vm/eetwain.cpp +++ b/src/vm/eetwain.cpp @@ -6041,7 +6041,8 @@ TADDR EECodeManager::GetAmbientSP(PREGDISPLAY pContext, #endif // _DEBUG && !DACCESS_COMPILE if ((stateBuf->hdrInfoBody.prologOffs != hdrInfo::NOT_IN_PROLOG) || - (stateBuf->hdrInfoBody.epilogOffs != hdrInfo::NOT_IN_EPILOG)) + (stateBuf->hdrInfoBody.epilogOffs != hdrInfo::NOT_IN_EPILOG) || + (GetRegdisplayFPAddress(pContext) == NULL)) { return NULL; } |