- Fix for #852: Completion of error handling.

This commit is contained in:
W.C.A. Wijngaards 2023-02-23 13:38:29 +01:00
parent ed07c5424d
commit d97c174f50
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,6 @@
23 February 2023: Wouter
- Fix for #852: Completion of error handling.
21 February 2023: Philip
- Fix #825: Unexpected behavior with client-subnet-always-forward
and serve-expired

View File

@ -177,6 +177,8 @@ static int readup_str(char** str, FILE* in)
}
buf[len] = 0;
*str = strdup(buf);
if(!*str)
fatal_exit("strdup failed: out of memory");
return 1;
}