[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Bug in sh_backslash_quote function (bash 4.3.33)
From: |
Алексей Верещагин |
Subject: |
Re: Bug in sh_backslash_quote function (bash 4.3.33) |
Date: |
Thu, 5 Mar 2015 01:39:17 +0300 |
Yes, the problem is with signed char on some platforms. Similar to "sh_backslash_quote" functions in shquote.c uses "register unsigned char" or "unsigned char" types for variable "c" (see "sh_double_quote" or "sh_backslash_quote_for_double_quotes") but "sh_backslash_quote" still use "int". And it is bug after ac50fb... commit at 2014-02-26. Not fixed yet in master. I think Chet may not know about problem with this function.