mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-24 16:49:35 -05:00
- Fix memory leak of https port string when reading config.
This commit is contained in:
parent
46607e7c0c
commit
ba074c8bef
4 changed files with 963 additions and 1050 deletions
|
|
@ -2,6 +2,7 @@
|
||||||
- Fix that http settings have colon in set_option, for
|
- Fix that http settings have colon in set_option, for
|
||||||
http-endpoint, http-max-streams, http-query-buffer-size,
|
http-endpoint, http-max-streams, http-query-buffer-size,
|
||||||
http-response-buffer-size, and http-nodelay.
|
http-response-buffer-size, and http-nodelay.
|
||||||
|
- Fix memory leak of https port string when reading config.
|
||||||
|
|
||||||
16 October 2020: Wouter
|
16 October 2020: Wouter
|
||||||
- Fix that the out of order TCP processing does not limit the
|
- Fix that the out of order TCP processing does not limit the
|
||||||
|
|
|
||||||
1413
util/configparser.c
1413
util/configparser.c
File diff suppressed because it is too large
Load diff
|
|
@ -1,8 +1,8 @@
|
||||||
/* A Bison parser, made by GNU Bison 3.5.1. */
|
/* A Bison parser, made by GNU Bison 3.4.1. */
|
||||||
|
|
||||||
/* Bison interface for Yacc-like parsers in C
|
/* Bison interface for Yacc-like parsers in C
|
||||||
|
|
||||||
Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation,
|
Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2019 Free Software Foundation,
|
||||||
Inc.
|
Inc.
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
|
|
||||||
|
|
@ -982,6 +982,7 @@ server_https_port: VAR_HTTPS_PORT STRING_ARG
|
||||||
if(atoi($2) == 0)
|
if(atoi($2) == 0)
|
||||||
yyerror("port number expected");
|
yyerror("port number expected");
|
||||||
else cfg_parser->cfg->https_port = atoi($2);
|
else cfg_parser->cfg->https_port = atoi($2);
|
||||||
|
free($2);
|
||||||
};
|
};
|
||||||
server_http_endpoint: VAR_HTTP_ENDPOINT STRING_ARG
|
server_http_endpoint: VAR_HTTP_ENDPOINT STRING_ARG
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue