Unverified Commit dcbdac1e by Enkelmann Committed by GitHub

fix typo in function name of stub (#382)

parent a8574343
...@@ -50,7 +50,7 @@ impl<'a, 'b> ExternCallHandler<'a, 'b> { ...@@ -50,7 +50,7 @@ impl<'a, 'b> ExternCallHandler<'a, 'b> {
warnings.append(&mut self.check_buffer_size(1, 2)); warnings.append(&mut self.check_buffer_size(1, 2));
} }
"fread" | "fwrite" => warnings.append(&mut self.check_buffer_size_and_count(0, 1, 2)), "fread" | "fwrite" => warnings.append(&mut self.check_buffer_size_and_count(0, 1, 2)),
"qsort" | "qsort_r" => warnings.append(&mut self.check_buffer_size_and_count(0, 2, 1)), "qsort" | "qsort_s" => warnings.append(&mut self.check_buffer_size_and_count(0, 2, 1)),
_ => self.handle_generic_call(), _ => self.handle_generic_call(),
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment