Revert "Fix hang in OOM situations"
authorBehdad Esfahbod <behdad@behdad.org>
Thu, 19 Nov 2015 19:59:03 +0000 (11:59 -0800)
committerBehdad Esfahbod <behdad@behdad.org>
Thu, 19 Nov 2015 19:59:47 +0000 (11:59 -0800)
This reverts commit f0599db761d7fc2d585d86e757a797f75ebc7499.

Commit abadc1717d997b69f987fdf1be9e12156d2d13d6 provides a better
fix for this.

src/hb-buffer-private.hh

index 49018022faf3ed63bc5aaab90a6dcc2ed4583452..111078c240c04ac7b6050855b32274f73c69da4c 100644 (file)
@@ -174,11 +174,7 @@ struct hb_buffer_t {
     if (have_output)
     {
       if (unlikely (out_info != info || out_len != idx)) {
-       if (unlikely (!make_room_for (1, 1)))
-       {
-         idx++; // So we don't hang indefinitely...
-         return;
-       }
+       if (unlikely (!make_room_for (1, 1))) return;
        out_info[out_len] = info[idx];
       }
       out_len++;