reverse return code for safemult API to conform to newer djb APIs
This commit is contained in:
@@ -23,7 +23,7 @@
|
||||
void* array_get(array* x,uint64 membersize,int64 pos) {
|
||||
uint64 wanted;
|
||||
if (__unlikely(pos+1<1)) return 0;
|
||||
if (__unlikely(umult64(membersize,pos,&wanted))) return 0;
|
||||
if (__unlikely(!umult64(membersize,pos,&wanted))) return 0;
|
||||
|
||||
if (__unlikely(wanted > x->allocated)) return 0;
|
||||
return x->p+pos*membersize;
|
||||
|
||||
Reference in New Issue
Block a user