clippy: fix some warnings in components/script (#31865)

This commit is contained in:
Ekta Siwach 2024-03-26 16:01:22 +05:30 committed by GitHub
parent 58f170c97a
commit 188f3caff1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 16 additions and 16 deletions

View file

@ -234,7 +234,7 @@ impl ErrorInfo {
if let Some(info) = ErrorInfo::from_dom_exception(object, cx) {
return Some(info);
}
return None;
None
}
unsafe fn from_value(value: HandleValue, cx: *mut JSContext) -> ErrorInfo {

View file

@ -502,7 +502,7 @@ fn define_name(cx: SafeJSContext, obj: HandleObject, name: &[u8]) {
*cx,
obj,
b"name\0".as_ptr() as *const libc::c_char,
name.handle().into(),
name.handle(),
JSPROP_READONLY as u32
));
}