mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-04 11:20:33 +01:00
* get rid of unitialized warnings
git-svn-id: trunk@6013 -
This commit is contained in:
parent
eeb94bf9ea
commit
18f3be105a
@ -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;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user