[master] 306f74b Remove unwarranted assert

Poul-Henning Kamp phk at varnish-cache.org
Thu Mar 24 15:01:31 CET 2011


commit 306f74bbf50d1f9491dd48df186a142797e75c71
Author: Poul-Henning Kamp <phk at FreeBSD.org>
Date:   Thu Mar 24 12:30:00 2011 +0000

    Remove unwarranted assert

diff --git a/bin/varnishd/cache_esi_deliver.c b/bin/varnishd/cache_esi_deliver.c
index 179c31f..9e983b7 100644
--- a/bin/varnishd/cache_esi_deliver.c
+++ b/bin/varnishd/cache_esi_deliver.c
@@ -64,7 +64,7 @@ ved_include(struct sess *sp, const char *src, const char *host)
 		return;
 	}
 
-	AZ(WRW_FlushRelease(w));
+	(void)WRW_FlushRelease(w);
 
 	obj = sp->obj;
 	sp->obj = NULL;



More information about the varnish-commit mailing list