зеркало из https://github.com/mozilla/gecko-dev.git
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:
Родитель
7f79f8eb4a
Коммит
5f83f09c93
|
@ -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());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче