summaryrefslogtreecommitdiff
path: root/src/c/urweb.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/c/urweb.c')
-rw-r--r--src/c/urweb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/c/urweb.c b/src/c/urweb.c
index 0ec741cc..ad0d33d9 100644
--- a/src/c/urweb.c
+++ b/src/c/urweb.c
@@ -2884,7 +2884,7 @@ int uw_rollback(uw_context ctx) {
if (ctx->transactionals[i].free)
ctx->transactionals[i].free(ctx->transactionals[i].data);
- return ctx->app->db_rollback(ctx);
+ return ctx->app ? ctx->app->db_rollback(ctx) : 0;
}
void uw_commit(uw_context ctx) {