mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-23 01:56:36 +03:00
Proper patch for an Issue #1539
This commit is contained in:
parent
fb2cb25afe
commit
9c69f56a34
|
@ -2944,7 +2944,7 @@ def decodeIntToUnicode(value):
|
||||||
try:
|
try:
|
||||||
if value > 255:
|
if value > 255:
|
||||||
if Backend.isDbms(DBMS.MSSQL):
|
if Backend.isDbms(DBMS.MSSQL):
|
||||||
encoding="UTF-16-LE" if isDBMSVersionAtLeast("2012") else "UTF-16-BE"
|
encoding = "UTF-16-BE"
|
||||||
else:
|
else:
|
||||||
encoding = conf.charset
|
encoding = conf.charset
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user