mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-26 03:01:07 +08:00
Fix empty returning string, broken in r2890. Fixes issue #1549 and various other places where esc() is called.
This commit is contained in:
@ -1597,7 +1597,7 @@ end;
|
||||
|
||||
function esc(Text: WideString; ProcessJokerChars: Boolean=false): WideString;
|
||||
begin
|
||||
Mainform.Connection.EscapeString(Text, ProcessJokerChars);
|
||||
Result := Mainform.Connection.EscapeString(Text, ProcessJokerChars);
|
||||
end;
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user