mirror of
https://github.com/owntone/owntone-server.git
synced 2025-01-15 08:45:02 -05:00
Rework code flow in httpd_gen_cb()
This commit is contained in:
parent
78275ae432
commit
2c6ceac486
@ -812,15 +812,13 @@ httpd_gen_cb(struct evhttp_request *req, void *arg)
|
|||||||
{
|
{
|
||||||
rsp_request(req);
|
rsp_request(req);
|
||||||
|
|
||||||
free(uri);
|
goto out;
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
else if (daap_is_request(req, uri))
|
else if (daap_is_request(req, uri))
|
||||||
{
|
{
|
||||||
daap_request(req);
|
daap_request(req);
|
||||||
|
|
||||||
free(uri);
|
goto out;
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
DPRINTF(E_DBG, L_HTTPD, "HTTP request: %s\n", uri);
|
DPRINTF(E_DBG, L_HTTPD, "HTTP request: %s\n", uri);
|
||||||
@ -828,6 +826,7 @@ httpd_gen_cb(struct evhttp_request *req, void *arg)
|
|||||||
/* Serve web interface files */
|
/* Serve web interface files */
|
||||||
serve_file(req, uri);
|
serve_file(req, uri);
|
||||||
|
|
||||||
|
out:
|
||||||
free(uri);
|
free(uri);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user