https://bugs.openldap.org/show_bug.cgi?id=10526
Howard Chu hyc@openldap.org changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |IN_PROGRESS Ever confirmed|0 |1
--- Comment #7 from Howard Chu hyc@openldap.org --- https://git.openldap.org/openldap/openldap/-/merge_requests/896
Test by compiling just back-mdb/idl.c using
make AC_CFLAGS="-g -DMDB_JUST_TESTING_IDLS" idl.o
use a test program like so:
### typedef unsigned long ID; #define NOID ((ID)~0) extern int mdb_idl_intersection(ID *a, ID *b);
int main() { ID a[32] = {NOID, 1, 90000}; ID b[32] = {2, 1, 99999};
mdb_idl_intersection(a, b); } ###
Link with the above compiled idl.o, examine in gdb.