zip.patch

Jan DolinĂ¡r, 06/30/2013 09:20 PM

Download (772 Bytes)

View differences:

plugin/zip/UnZip.cpp (working copy)
96 96

  
97 97
bool UnZip::IsEof() const
98 98
{
99
	return eof || !zip || eof || error || zip->IsEof();
99
	return eof || !zip || error || zip->IsEof();
100 100
}
101 101

  
102 102
bool UnZip::IsFolder() const
plugin/zip/Zip.cpp (working copy)
102 102

  
103 103
Zip::Zip(Stream& out)
104 104
{
105
	done = 0;
106
	zip = NULL;
105 107
	Create(out);
106 108
}
107 109

  
......
130 132

  
131 133
void StringZip::Create()
132 134
{
133
	zip.Create();
135
	Zip::Create(zip);
134 136
}
135 137

  
136 138
String StringZip::Finish()