mirror of
https://github.com/monero-project/monero.git
synced 2025-12-23 07:29:11 -08:00
Check if chunk size is zero instead of negative
This corrects an unnecessary check and fixes compile error on OS X.
This commit is contained in:
@@ -288,8 +288,8 @@ int import_from_file(FakeCore& simple_core, std::string& import_file_path, uint6
|
||||
{
|
||||
LOG_PRINT_L0("NOTE: chunk_size " << chunk_size << " > 100000");
|
||||
}
|
||||
else if (chunk_size < 0) {
|
||||
LOG_PRINT_L0("ERROR: chunk_size " << chunk_size << " < 0");
|
||||
else if (chunk_size == 0) {
|
||||
LOG_PRINT_L0("ERROR: chunk_size == 0");
|
||||
return 2;
|
||||
}
|
||||
import_file.read(buffer_block, chunk_size);
|
||||
|
||||
Reference in New Issue
Block a user