From: Steinar H. Gunderson Date: Thu, 6 Jun 2013 00:21:46 +0000 (+0200) Subject: (Hopefully) fix an assert failure in httpinput.cpp. X-Git-Tag: 1.0.0~33 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=ff78f87ecc83e472f8c649eb0b8503a483e393ff;hp=ff78f87ecc83e472f8c649eb0b8503a483e393ff;p=cubemap (Hopefully) fix an assert failure in httpinput.cpp. If we get the Metacube sync marker but not the right of the header, we can set has_metacube_header, and then return. If the connection drops right there, the flag won't be correctly reset, and if the next connection starts with something that's not a Metacube block, we will try to read junk data as Metacube. Thankfully, the assert caught this case. ---