Skip to content

Commit

Permalink
fix goto failed error
Browse files Browse the repository at this point in the history
  • Loading branch information
chronolaw committed Nov 14, 2023
1 parent 5eba04a commit 4f3e176
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ngx_lua_resty_lmdb_module.c
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ ngx_lua_resty_lmdb_write_tag(ngx_cycle_t *cycle,
ngx_log_error(NGX_LOG_ERR, cycle->log, 0,
"unable to commit LMDB: %s",
mdb_strerror(rc));
goto failed;
return NGX_ERROR;
}

ngx_log_debug1(NGX_LOG_DEBUG_CORE, cycle->log, 0,
Expand Down

0 comments on commit 4f3e176

Please sign in to comment.