<div dir="ltr"><div># HG changeset patch</div><div># User Robert Paprocki <<a href="mailto:robert@cryptobells.com">robert@cryptobells.com</a>></div><div># Date 1512174351 28800</div><div>#      Fri Dec 01 16:25:51 2017 -0800</div><div># Node ID a200e7c746dc7853b051f9b357a5b9c24d6b0dd0</div><div># Parent  fc0d06224edac2c7cfbfd9a4def478f285d9957b</div><div>Validate presence of upstream pipe in ngx_http_upstream_finalize_request</div><div><br></div><div>diff -r fc0d06224eda -r a200e7c746dc src/http/ngx_http_upstream.c</div><div>--- a/src/http/ngx_http_upstream.c<span style="white-space:pre">     </span>Tue Nov 28 13:09:54 2017 +0300</div><div>+++ b/src/http/ngx_http_upstream.c<span style="white-space:pre">      </span>Fri Dec 01 16:25:51 2017 -0800</div><div>@@ -4353,7 +4353,9 @@</div><div>             }</div><div>         }</div><div> </div><div>-        ngx_http_file_cache_free(r->cache, u->pipe->temp_file);</div><div>+        if (u->pipe) {</div><div>+            ngx_http_file_cache_free(r->cache, u->pipe->temp_file);</div><div>+        }</div><div>     }</div><div> </div><div> #endif</div><div><br></div></div>