clamdscan: make sure headers exist before operating on them

This commit is contained in:
Matt Simerson 2012-06-22 23:37:42 -04:00
parent 87a5859d8c
commit 08256232a8
2 changed files with 9 additions and 2 deletions

View File

@ -289,6 +289,8 @@ sub is_not_multipart {
return if $self->{'_args'}{'scan_all'};
return 1 if ! $transaction->header;
# Ignore non-multipart emails
my $content_type = $transaction->header->get('Content-Type') or return 1;
$content_type =~ s/\s/ /g;

View File

@ -75,7 +75,12 @@ sub test_is_not_multipart {
ok( $self->is_not_multipart(), "not_multipart" );
if ( $tran->header ) {
$tran->header->add('Content-Type', 'multipart/alternative; boundary="Jx3Wbb8BMHsO=_?:"');
ok( ! $self->is_not_multipart(), "not_multipart" );
}
else {
ok( 1 );
}
}