mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
try to save the fuzzed save file again
This should test some additional code paths.
This commit is contained in:
parent
1928704065
commit
48fb45887f
|
@ -1,4 +1,6 @@
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
|
#include <cstdint>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
#include "../../toxcore/tox.h"
|
#include "../../toxcore/tox.h"
|
||||||
|
|
||||||
|
@ -17,8 +19,15 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
|
||||||
tox_options_set_savedata_type(tox_options, TOX_SAVEDATA_TYPE_TOX_SAVE);
|
tox_options_set_savedata_type(tox_options, TOX_SAVEDATA_TYPE_TOX_SAVE);
|
||||||
|
|
||||||
Tox *tox = tox_new(tox_options, nullptr);
|
Tox *tox = tox_new(tox_options, nullptr);
|
||||||
|
|
||||||
tox_options_free(tox_options);
|
tox_options_free(tox_options);
|
||||||
|
if (tox == nullptr) {
|
||||||
|
// Tox save was invalid, we're finished here
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// verify that the file can be saved again
|
||||||
|
std::vector<uint8_t> new_savedata(tox_get_savedata_size(tox));
|
||||||
|
tox_get_savedata(tox, new_savedata.data());
|
||||||
|
|
||||||
tox_kill(tox);
|
tox_kill(tox);
|
||||||
return 0; // Non-zero return values are reserved for future use.
|
return 0; // Non-zero return values are reserved for future use.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user