Browse Source

Remove unnecessary warning

master
Con Kolivas 10 years ago
parent
commit
7f92dfbc7e
  1. 6
      src/generator.c

6
src/generator.c

@ -1079,11 +1079,13 @@ out:
if (ret) { if (ret) {
/* Now parse any cached responses so there are none in the /* Now parse any cached responses so there are none in the
* queue and they can be managed one at a time from now on. */ * queue and they can be managed one at a time from now on. */
do { while(42) {
dealloc(buf); dealloc(buf);
buf = cached_proxy_line(proxi); buf = cached_proxy_line(proxi);
if (!buf)
break;
parse_method(proxi, buf); parse_method(proxi, buf);
} while (buf); };
} }
return ret; return ret;
} }

Loading…
Cancel
Save