Explorar o código

* get rid of unitialized warnings

git-svn-id: trunk@6013 -
pierre %!s(int64=18) %!d(string=hai) anos
pai
achega
18f3be105a
Modificáronse 1 ficheiros con 4 adicións e 0 borrados
  1. 4 0
      compiler/cutils.pas

+ 4 - 0
compiler/cutils.pas

@@ -1134,6 +1134,8 @@ implementation
 
     begin
       minilzw_encode:='';
+      fillchar(data,sizeof(data),#0);
+      fillchar(previous,sizeof(previous),#0);
       if s<>'' then
         begin
           lzwptr:=127;
@@ -1191,6 +1193,8 @@ implementation
 
     begin
       minilzw_decode:='';
+      fillchar(data,sizeof(data),#0);
+      fillchar(previous,sizeof(previous),#0);
       if s<>'' then
         begin
           lzwptr:=127;