You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (NULL == pfnGETREQUESTEDRUNTIMEINFO) {
// ... (Some of Your Codes)
if (0 == _tcscmp(pszNetfxVersionToCheck, g_szNetfx10VersionString))
{
// ... (Some of Your Codes)
goto Finish;
}
// need a "return false;" to here i think.
}
// ... (Some of Your Codes)
// Check for the requested .NET Framework version
hr = pfnGETREQUESTEDRUNTIMEINFO(... // Possible Null Pointer
if There is "CorBindToRuntime" AND "no GetRequestedRuntimeInfo" in mscoree dll (maybe virus or like that);
this function will crash your program.
The text was updated successfully, but these errors were encountered:
if (NULL == pfnGETREQUESTEDRUNTIMEINFO) {
// ... (Some of Your Codes)
if (0 == _tcscmp(pszNetfxVersionToCheck, g_szNetfx10VersionString))
{
// ... (Some of Your Codes)
goto Finish;
}
// need a "return false;" to here i think.
}
// ... (Some of Your Codes)
// Check for the requested .NET Framework version
hr = pfnGETREQUESTEDRUNTIMEINFO(... // Possible Null Pointer
if There is "CorBindToRuntime" AND "no GetRequestedRuntimeInfo" in mscoree dll (maybe virus or like that);
this function will crash your program.
The text was updated successfully, but these errors were encountered: