mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
fuzz_tests: fix an uninitialized var in setup
and comment it out, it's only used to generate a starting test case Coverity 182506
This commit is contained in:
parent
03887f1140
commit
fa6b45665d
1 changed files with 3 additions and 2 deletions
|
@ -299,7 +299,7 @@ int LevinFuzzer::run(const std::string &filename)
|
||||||
{
|
{
|
||||||
std::string s;
|
std::string s;
|
||||||
|
|
||||||
//
|
#if 0
|
||||||
epee::levin::bucket_head2 req_head;
|
epee::levin::bucket_head2 req_head;
|
||||||
req_head.m_signature = LEVIN_SIGNATURE;
|
req_head.m_signature = LEVIN_SIGNATURE;
|
||||||
req_head.m_cb = 0;
|
req_head.m_cb = 0;
|
||||||
|
@ -307,10 +307,11 @@ int LevinFuzzer::run(const std::string &filename)
|
||||||
req_head.m_command = 2000;
|
req_head.m_command = 2000;
|
||||||
req_head.m_flags = LEVIN_PACKET_REQUEST;
|
req_head.m_flags = LEVIN_PACKET_REQUEST;
|
||||||
req_head.m_protocol_version = LEVIN_PROTOCOL_VER_1;
|
req_head.m_protocol_version = LEVIN_PROTOCOL_VER_1;
|
||||||
|
req_head.m_return_code = 0;
|
||||||
FILE *f=fopen("/tmp/out.levin", "w");
|
FILE *f=fopen("/tmp/out.levin", "w");
|
||||||
fwrite(&req_head,sizeof(req_head),1, f);
|
fwrite(&req_head,sizeof(req_head),1, f);
|
||||||
fclose(f);
|
fclose(f);
|
||||||
//
|
#endif
|
||||||
if (!epee::file_io_utils::load_file_to_string(filename, s))
|
if (!epee::file_io_utils::load_file_to_string(filename, s))
|
||||||
{
|
{
|
||||||
std::cout << "Error: failed to load file " << filename << std::endl;
|
std::cout << "Error: failed to load file " << filename << std::endl;
|
||||||
|
|
Loading…
Reference in a new issue