*** empty log message ***

This commit is contained in:
Mike Goslin 2000-12-15 22:17:58 +00:00
parent 9ad657075e
commit eaa7527155
2 changed files with 2 additions and 5 deletions

View File

@ -204,11 +204,6 @@ run(void) {
int avail_out = dest_buffer_length;
nassertr(avail_out > 0 && avail_in > 0, false);
if (downloader_cat.is_debug())
downloader_cat.debug()
<< "Decompressor::run() - avail_in: " << avail_in << " avail_out: "
<< avail_out << endl;
while (avail_in > 0) {
int ret = _decompressor->decompress_to_stream(next_in, avail_in,
next_out, avail_out, dest_buffer,

View File

@ -395,6 +395,8 @@ run(void) {
return DS_error;
}
nassertr(_current_status != NULL, DS_error);
if (connect_to_server() == false)
return DS_error_connect;