Explorar o código

Fixes a potential crash in TStrings.SaveToStream

git-svn-id: trunk@16187 -
sekelsenmat %!s(int64=15) %!d(string=hai) anos
pai
achega
8b6e8079ec
Modificáronse 1 ficheiros con 1 adicións e 0 borrados
  1. 1 0
      rtl/objpas/classes/stringl.inc

+ 1 - 0
rtl/objpas/classes/stringl.inc

@@ -851,6 +851,7 @@ Var
   S : String;
 begin
   S:=Text;
+  if S = '' then Exit;
   Stream.WriteBuffer(Pointer(S)^,Length(S));
 end;