ASDec: Small changes to eliminate notices

This commit is contained in:
Jindra Pet��k
2012-12-28 12:17:33 +01:00
parent 1223dd8aad
commit dbe3dc2905
63 changed files with 116 additions and 104 deletions
@@ -342,7 +342,7 @@ public class ProxyFrame extends JFrame implements ActionListener, CatchedListene
FileOutputStream fos = new FileOutputStream(f);
fos.write(hdr);
byte buf[] = new byte[2048];
int count = 0;
int count;
while ((count = data.read(buf)) > 0) {
fos.write(buf, 0, count);
}