commit | e35aada698d2d8d14042110c523acea5a707adac | [log] [tgz] |
---|---|---|
author | Keun Soo Yim <yim@google.com> | Tue Apr 26 16:35:37 2016 -0700 |
committer | Keun Soo Yim <yim@google.com> | Thu Apr 28 00:29:48 2016 +0000 |
tree | 1db4a86d040bb90999c172b6fa04a9f70b3d4f1e | |
parent | 1decdf2dacf515d2a56b521c1f7a40a5b974b1ce [diff] [blame] |
build a basic data flow path to return the return value of a called function to the funzzing framework Change-Id: Ibf800c782a073fbb051361ecc4939511ce79cafe
diff --git a/sysfuzzer/common/specification_parser/SpecificationBuilder.cpp b/sysfuzzer/common/specification_parser/SpecificationBuilder.cpp index f9252e7..cc323d6 100644 --- a/sysfuzzer/common/specification_parser/SpecificationBuilder.cpp +++ b/sysfuzzer/common/specification_parser/SpecificationBuilder.cpp
@@ -99,7 +99,8 @@ } if (!fuzzer->LoadTargetComponent(dll_file_name)) return -1; for (int i = 0; i < epoch_count_; i++) { - fuzzer->Fuzz(*interface_specification_message); + void* result; + fuzzer->Fuzz(*interface_specification_message, result); } return true; }