Skip to content
Snippets Groups Projects
Commit 36a06168 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Fix backend_destroy to call bi_destroy instead of bi_close

parent 587535a3
No related branches found
No related tags found
No related merge requests found
......@@ -228,8 +228,8 @@ int backend_destroy(void)
/* destroy each backend type */
for( i = 0; i < nBackendInfo; i++ ) {
if( backendInfo[i].bi_close ) {
backendInfo[i].bi_close(
if( backendInfo[i].bi_destroy ) {
backendInfo[i].bi_destroy(
&backendInfo[i] );
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment