Revert "ITS#9160 OOM handling in mdb tools", wrong branch.

This reverts commit be61a967e6.
This commit is contained in:
Ondřej Kuzník 2020-02-07 11:34:20 +00:00
parent 47e0e3fdb5
commit b1170bc035
2 changed files with 0 additions and 8 deletions

View File

@ -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);

View File

@ -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);