cryptlib.c: make even non-Windows builds "strtoull-agnostic" [from HEAD].
This commit is contained in:
		@@ -698,7 +698,7 @@ void OPENSSL_cpuid_setup(void)
 | 
			
		||||
#if defined(_WIN32)
 | 
			
		||||
	if (!sscanf(env+off,"%I64i",&vec)) vec = strtoul(env+off,NULL,0);
 | 
			
		||||
#else
 | 
			
		||||
	vec = strtoull(env+off,NULL,0);
 | 
			
		||||
	if (!sscanf(env+off,"%lli",(long long *)&vec)) vec = strtoul(env+off,NULL,0);
 | 
			
		||||
#endif
 | 
			
		||||
	if (off) vec = OPENSSL_ia32_cpuid()&~vec;
 | 
			
		||||
    }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user