> > > > > Same here, the thing suddenly crashes every now and then...


Try this patch and see if it helps in scanners.c:
 /* Scan metadata */
 mdata = root->zip_mlist;
 do {
     if(mdata->encrypted != encrypted)
  continue;

Change to

 /* Scan metadata */
 mdata = root->zip_mlist;
 if(mdata) do {
     if(mdata->encrypted != encrypted)
  continue;

I've seen instances of mdata == NULL which is not tested for. Then report back 
to here.

-- 
Nigel Horne. Arranger, Composer, Typesetter.
NJH Music, Barnsley, UK.  ICQ#20252325
[EMAIL PROTECTED] http://www.bandsman.co.uk
_______________________________________________
http://lurker.clamav.net/list/clamav-users.html

Reply via email to