kplib.c without asm: I see an uninitialized access here, valgrind does not?

git-svn-id: https://svn.eduke32.com/eduke32@2293 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
helixhorned 2012-01-28 14:37:08 +00:00
parent 0f36ef92ee
commit a32872276d

View file

@ -319,7 +319,7 @@ static inline int32_t bitrev(int32_t b, int32_t c)
static inline int32_t testflag(int32_t c) { UNREFERENCED_PARAMETER(c); return(0); }
static inline void cpuid(int32_t a, int32_t *s) { UNREFERENCED_PARAMETER(a); UNREFERENCED_PARAMETER(s);}
static inline void cpuid(int32_t a, int32_t *s) { UNREFERENCED_PARAMETER(a); s[0]=0; }
#endif