Bug 1674947 - Fix warning: getting the inner pointer of a temporary `CString`. r=xpcom-reviewers,nika

Differential Revision: https://phabricator.services.mozilla.com/D95960
This commit is contained in:
Mike Hommey 2020-11-09 08:31:28 +00:00
Родитель 7f79f8eb4a
Коммит 5f83f09c93
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -12,7 +12,8 @@ fn nonfatal_fail(msg: String) {
fn GTest_ExpectFailure(message: *const c_char);
}
unsafe {
GTest_ExpectFailure(CString::new(msg).unwrap().as_ptr());
let msg = CString::new(msg).unwrap();
GTest_ExpectFailure(msg.as_ptr());
}
}