Re: RFR(XS): 8220072: GCC 8.3 reports errors in java.base

2019-05-22 Thread Dmitry Chuyko
Thanks for the review, pushed with copyright update. -Dmitry On 5/22/19 8:36 PM, Roger Riggs wrote: Hi Dmitry, Looks ok. Roger On 05/21/2019 04:24 PM, Dmitry Chuyko wrote: Hello, Please review a small fix for compilation error reported by recent compiler in canonicalize() from canonicali

Re: RFR(XS): 8220072: GCC 8.3 reports errors in java.base

2019-05-22 Thread Roger Riggs
Hi Dmitry, Looks ok. Roger On 05/21/2019 04:24 PM, Dmitry Chuyko wrote: Hello, Please review a small fix for compilation error reported by recent compiler in canonicalize() from canonicalize_md.c. PATH_MAX may be passed as num argument to strncpy() and ‘\0’ is added to resulting string. Th

RFR(XS): 8220072: GCC 8.3 reports errors in java.base

2019-05-21 Thread Dmitry Chuyko
Hello, Please review a small fix for compilation error reported by recent compiler in canonicalize() from canonicalize_md.c. PATH_MAX may be passed as num argument to strncpy() and ‘\0’ is added to resulting string. The case of too long name is processed at the beginning of canonicalize() so du