projects
/
platform
/
upstream
/
libHarfBuzzSharp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
18e1c6b
)
Revert "Fix hang in OOM situations"
author
Behdad Esfahbod
<behdad@behdad.org>
Thu, 19 Nov 2015 19:59:03 +0000
(11:59 -0800)
committer
Behdad 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
patch
|
blob
|
history
diff --git
a/src/hb-buffer-private.hh
b/src/hb-buffer-private.hh
index 49018022faf3ed63bc5aaab90a6dcc2ed4583452..111078c240c04ac7b6050855b32274f73c69da4c 100644
(file)
--- a/
src/hb-buffer-private.hh
+++ b/
src/hb-buffer-private.hh
@@
-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++;