don't actually need the assert in release code

This commit is contained in:
leitner
2021-04-27 19:54:12 +00:00
parent e29be46197
commit 709888e86f

2
acl.c
View File

@@ -365,7 +365,9 @@ nomem:
a->attrib[k]=0;
a->attrs[l]=a->attrib+k+1;
}
#ifndef __dietlibc__
assert(l==a->anum); // this is for the benefit of clang's static analyzer
#endif
for (k=0; k<a->anum; ++k) {
int found=0;
for (j=0; j<attribute_count; ++j) {