Merge branch 'fix/issue74' into develop

This closes #74
This commit is contained in:
Steffen Jaeckel 2015-08-21 21:30:38 +02:00
commit 08629ed2b0

View File

@ -47,6 +47,11 @@ int mem_neq(const void *a, const void *b, size_t len)
++pb;
}
ret |= ret >> 4;
ret |= ret >> 2;
ret |= ret >> 1;
ret &= 1;
return ret;
}