mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-20 22:59:34 -05:00
Revert "ITS#9160 OOM handling in mdb tools", wrong branch.
This reverts commit be61a967e6.
This commit is contained in:
parent
47e0e3fdb5
commit
b1170bc035
2 changed files with 0 additions and 8 deletions
|
|
@ -279,10 +279,6 @@ int main(int argc, char *argv[])
|
|||
continue;
|
||||
count++;
|
||||
str = malloc(key.mv_size+1);
|
||||
if (!str) {
|
||||
fprintf(stderr, "malloc failed\n");
|
||||
goto txn_abort;
|
||||
}
|
||||
memcpy(str, key.mv_data, key.mv_size);
|
||||
str[key.mv_size] = '\0';
|
||||
rc = mdb_open(txn, str, 0, &db2);
|
||||
|
|
|
|||
|
|
@ -232,10 +232,6 @@ int main(int argc, char *argv[])
|
|||
if (memchr(key.mv_data, '\0', key.mv_size))
|
||||
continue;
|
||||
str = malloc(key.mv_size+1);
|
||||
if (!str) {
|
||||
fprintf(stderr, "malloc failed\n");
|
||||
goto txn_abort;
|
||||
}
|
||||
memcpy(str, key.mv_data, key.mv_size);
|
||||
str[key.mv_size] = '\0';
|
||||
rc = mdb_open(txn, str, 0, &db2);
|
||||
|
|
|
|||
Loading…
Reference in a new issue