blob: 1519d84696dffbdf697a42038ea197abdcbbb349 [file] [log] [blame]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05001icu: Ticket #11959: pkgdata dies when compiled with lots'o'flags
2
3See: http://bugs.icu-project.org/trac/ticket/11959
4
5The patch avoids premature failure which results in a segfault.
6
7Upstream-Status: Backport of r38081
8Signed-off-by: Mike Crowe <mac@mcrowe.com>
9
10Index: source/tools/toolutil/flagparser.c
11===================================================================
12--- source/tools/toolutil/flagparser.c (revision 38046)
13+++ source/tools/toolutil/flagparser.c (working copy)
14@@ -96,8 +96,8 @@
15 uprv_free(buffer);
16
17 T_FileStream_close(f);
18-
19- if (U_FAILURE(*status)) {
20+
21+ if (U_FAILURE(*status) && *status != U_BUFFER_OVERFLOW_ERROR) {
22 return -1;
23 }
24