Bug 502301 - Fix binhex_decode array signedness which broke builds on architectures where char is unsigned [r=benjamin]
This was detected by the C++0x narrowing conversion inside {} compilation errors.
This commit is contained in:
Родитель
b72f708eb5
Коммит
728f5499e8
|
@ -98,7 +98,7 @@ NS_INTERFACE_MAP_END
|
|||
|
||||
// The binhex 4.0 decoder table....
|
||||
|
||||
static char binhex_decode[256] =
|
||||
static signed char binhex_decode[256] =
|
||||
{
|
||||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||||
|
|
Загрузка…
Ссылка в новой задаче