On Wed, May 13, 2015 at 09:02:33PM -0400, Jeff King wrote: > +static int die_webcgi_recursing(void) > +{ > + dead++; > + return dead > 1; > +} Ugh, somehow I managed to introduce an off-by-one here while prettifying the code before sending. It should be "> 2" (or "dead++ > 1" to get the value before incrementing). The series I'll post in a moment will have a fixed version. -Peff -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html