mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-17 23:05:00 -05:00
left some debug info
This commit is contained in:
parent
c3cb6ec1ba
commit
363e7d394f
@ -174,7 +174,6 @@ begin
|
|||||||
begin
|
begin
|
||||||
if ii < 9 then
|
if ii < 9 then
|
||||||
raise Exception.CreateFMT('Invalid DTM-String passed to StringToDTM: %s',[s]);
|
raise Exception.CreateFMT('Invalid DTM-String passed to StringToDTM: %s',[s]);
|
||||||
Writeln(copy(s,2,ii-1));
|
|
||||||
Source := Base64DecodeStr(copy(s,2,ii-1));
|
Source := Base64DecodeStr(copy(s,2,ii-1));
|
||||||
i:= PLongint(@source[1])^; //The 4 four bytes should contain the dest len!
|
i:= PLongint(@source[1])^; //The 4 four bytes should contain the dest len!
|
||||||
if i < 1 then
|
if i < 1 then
|
||||||
@ -356,7 +355,6 @@ begin
|
|||||||
begin
|
begin
|
||||||
setlength(result,Destlen + SizeOf(Integer));
|
setlength(result,Destlen + SizeOf(Integer));
|
||||||
PInteger(@result[1])^ := len;
|
PInteger(@result[1])^ := len;
|
||||||
Writeln(len);
|
|
||||||
Move(bufferstring[0],result[1 + sizeof(integer)],Destlen);
|
Move(bufferstring[0],result[1 + sizeof(integer)],Destlen);
|
||||||
//We now have Size + Compressed data.. Lets Base64Encrypt it!
|
//We now have Size + Compressed data.. Lets Base64Encrypt it!
|
||||||
Result := 'm' + Base64EncodeStr(result);
|
Result := 'm' + Base64EncodeStr(result);
|
||||||
|
Loading…
Reference in New Issue
Block a user