MCPcopy Create free account
hub / github.com/FuzzAnything/PromptFuzz / get_child_err

Function get_child_err

src/execution/mod.rs:926–931  ·  view source on GitHub ↗
(mut err: ChildStderr)

Source from the content-addressed store, hash-verified

924}
925
926pub fn get_child_err(mut err: ChildStderr) -> String {
927 let mut err_buf = Vec::new();
928 err.read_to_end(&mut err_buf).unwrap();
929 let err_msg = String::from_utf8_lossy(&err_buf).to_string();
930 err_msg
931}
932
933// mkdir the directory "corpus" under the same directory of fuzzer.
934fn mkdir_fuzzer_corpus(fuzzer_path: &Path) -> PathBuf {

Callers 2

executeMethod · 0.85
execute_cov_fuzzerMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected