src: add a famous quote

This commit is contained in:
Markus F.X.J. Oberhumer
2023-08-22 00:37:45 +02:00
parent dd1838a7eb
commit 6eace187e7
3 changed files with 7 additions and 0 deletions
+3
View File
@@ -108,6 +108,9 @@ inline constexpr bool upx_is_integral_v = upx_is_integral<T>::value;
// protect against integer overflows and malicious header fields
// see C 11 standard, Annex K
//
// this limits uncompressed_size to about 640 MiB which is perfectly fine:
// "640 MiB Ought to be Enough for Anyone" --Markus F.X.J. Oberhumer, 1981 ;-)
typedef size_t upx_rsize_t;
#define UPX_RSIZE_MAX UPX_RSIZE_MAX_MEM
#define UPX_RSIZE_MAX_MEM (768 * 1024 * 1024) // DO NOT CHANGE !!!