fix warnings and bugs, noticed on nightly

This commit is contained in:
dignifiedquire
2020-06-17 19:20:58 +02:00
committed by holger krekel
parent a7bf05bebb
commit baff13ecab
4 changed files with 13 additions and 7 deletions

View File

@@ -257,7 +257,8 @@ impl MimeMessage {
self.parts[0].msg = "".to_string();
// swap new with old
std::mem::replace(&mut self.parts[0], filepart);
self.parts.push(filepart); // push to the end
let _ = self.parts.swap_remove(0); // drops first element, replacing it with the last one in O(1)
}
}
}