msxml3: Fixed two const table declarations (Coverity).
This commit is contained in:
parent
123e4ad41d
commit
483559b3e0
|
@ -387,7 +387,7 @@ static DWORD dt_hash_bstr(OLECHAR const* bstr, int len /* calculated if -1 */)
|
||||||
return hval;
|
return hval;
|
||||||
}
|
}
|
||||||
|
|
||||||
static const xmlChar const* DT_string_table[DT__N_TYPES] =
|
static const xmlChar *const DT_string_table[DT__N_TYPES] =
|
||||||
{
|
{
|
||||||
DT_bin_base64,
|
DT_bin_base64,
|
||||||
DT_bin_hex,
|
DT_bin_hex,
|
||||||
|
@ -427,7 +427,7 @@ static const xmlChar const* DT_string_table[DT__N_TYPES] =
|
||||||
DT_uuid
|
DT_uuid
|
||||||
};
|
};
|
||||||
|
|
||||||
static const WCHAR const* DT_wstring_table[DT__N_TYPES] =
|
static const WCHAR *const DT_wstring_table[DT__N_TYPES] =
|
||||||
{
|
{
|
||||||
wDT_bin_base64,
|
wDT_bin_base64,
|
||||||
wDT_bin_hex,
|
wDT_bin_hex,
|
||||||
|
|
Loading…
Reference in New Issue