mirror of https://github.com/aria2/aria2
mingw: Add warning for falloc
parent
e6e3cd2e32
commit
74811ddaff
|
@ -337,6 +337,17 @@ error_code::Value option_processing(Option& op, bool standalone,
|
||||||
"--save-session");
|
"--save-session");
|
||||||
op.remove(PREF_DEFERRED_INPUT);
|
op.remove(PREF_DEFERRED_INPUT);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef __MINGW32__
|
||||||
|
if (op.get(PREF_FILE_ALLOCATION) == V_FALLOC) {
|
||||||
|
A2_LOG_WARN(
|
||||||
|
"--file-allocation=falloc will use SetFileValidData() API, and "
|
||||||
|
"aria2 uses uninitialized disk space which may contain "
|
||||||
|
"confidential data as the download file space. If it is "
|
||||||
|
"undesirable, --file-allocation=prealloc is slower, but safer option.");
|
||||||
|
}
|
||||||
|
#endif // __MINGW32__
|
||||||
|
|
||||||
return error_code::FINISHED;
|
return error_code::FINISHED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue