1
0
mirror of https://github.com/postgrespro/pg_probackup.git synced 2025-09-16 09:26:30 +02:00

[Issue #263] fix parsing of big size values

This commit is contained in:
Grigory Smolkin
2020-12-09 10:04:32 +03:00
parent 775b260aa4
commit 6f9e1df95d

View File

@@ -490,9 +490,9 @@ config_read_opt(const char *path, ConfigOption options[], int elevel,
bool strict, bool missing_ok)
{
FILE *fp;
char buf[1024];
char buf[4096];
char key[1024];
char value[1024];
char value[2048];
int parsed_options = 0;
if (!options)