| commit | 2735555c6b0c95db7dfc2b391f92a1a5c06084c4 | [log] [tgz] |
|---|---|---|
| author | Behdad Esfahbod <behdad@behdad.org> | Fri Feb 19 15:12:16 2016 +0700 |
| committer | Behdad Esfahbod <behdad@behdad.org> | Fri Feb 19 15:12:50 2016 +0700 |
| tree | 237f6b7f97c78f35d39631dd241b91f0cf7b45b9 | |
| parent | b87e36f6f119fac80b8fd55f3abae563c2c5b798 [diff] |
[fuzzing] Add TODO item
diff --git a/test/fuzzing/hb-fuzzer.cc b/test/fuzzing/hb-fuzzer.cc index c01c57f..b319a71 100644 --- a/test/fuzzing/hb-fuzzer.cc +++ b/test/fuzzing/hb-fuzzer.cc
@@ -45,6 +45,7 @@ #include <assert.h> std::string FileToString(const std::string &Path) { + /* TODO This silently passes if file does not exist. Fix it! */ std::ifstream T(Path.c_str()); return std::string((std::istreambuf_iterator<char>(T)), std::istreambuf_iterator<char>());