CLEANUP: proto_http: Removing useless variable assignation

delta is set to 0 just before being assigned to a buffer.
This patch is just removing this useless line, shorted is better.
diff --git a/src/proto_http.c b/src/proto_http.c
index c8df1a4..50e3d48 100644
--- a/src/proto_http.c
+++ b/src/proto_http.c
@@ -1961,7 +1961,6 @@
 		return 0;
 
 	cur_end = msg->chn->buf->p + msg->sl.rq.l;
-	delta = 0;
 
 	if (msg->sl.rq.u_l == 0) {
 		/* HTTP/0.9 requests *must* have a request URI, per RFC 1945 */