Skip to content
Snippets Groups Projects
Commit 8b3a69ae authored by Ralf Haferkamp's avatar Ralf Haferkamp
Browse files

Additional fix for ITS#2924: check for availability of

glueBack->be_entry_close before calling it
parent bc016102
Branches
Tags
No related merge requests found
......@@ -464,7 +464,8 @@ glue_tool_entry_next (
/* If we ran out of entries in one database, move on to the next */
while (rc == NOID) {
glueBack->be_entry_close (glueBack);
if ( glueBack && glueBack->be_entry_close )
glueBack->be_entry_close (glueBack);
for (i=0; i<gi->nodes; i++) {
if (gi->n[i].be == glueBack)
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment