Skip to content

Commit da7e362

Browse files
committed
vweb: fix deref
1 parent 21a473a commit da7e362

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

‎vlib/vweb/vweb.v‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -754,7 +754,7 @@ fn handle_conn[T](mut conn net.TcpConn, global_app &T, controllers []&Controller
754754
}
755755

756756
mut request_app := new_request_app(global_app, ctx, tid)
757-
handle_route(mut request_app, url, host, routes, tid)
757+
handle_route(mut *request_app, url, host, routes, tid)
758758
}
759759

760760
@[manualfree]

0 commit comments

Comments
 (0)