mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
Another patch for #1539
This commit is contained in:
parent
a212f0c240
commit
ca933fcf1d
|
@ -2950,7 +2950,7 @@ def decodeIntToUnicode(value):
|
||||||
|
|
||||||
if Backend.isDbms(DBMS.MSSQL):
|
if Backend.isDbms(DBMS.MSSQL):
|
||||||
retVal = getUnicode(raw, "UTF-16-BE")
|
retVal = getUnicode(raw, "UTF-16-BE")
|
||||||
elif Backend.isDbms(DBMS.PGSQL):
|
elif Backend.getIdentifiedDbms() in (DBMS.PGSQL, DBMS.ORACLE):
|
||||||
retVal = unichr(value)
|
retVal = unichr(value)
|
||||||
else:
|
else:
|
||||||
retVal = getUnicode(raw, conf.charset)
|
retVal = getUnicode(raw, conf.charset)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user