diff options
author | Samuel Mendoza-Jonas <sam@mendozajonas.com> | 2016-06-27 14:42:29 +1000 |
---|---|---|
committer | Samuel Mendoza-Jonas <sam@mendozajonas.com> | 2016-06-27 14:54:41 +1000 |
commit | dc96fc7df262a0b72ece710dcfc9ffab1c952dec (patch) | |
tree | f3bf1be1f4872e0bff46d86f3502430778e87523 /lib | |
parent | b2c6831dbf569b90c8873392834cdf697555beae (diff) | |
download | petitboot-dc96fc7df262a0b72ece710dcfc9ffab1c952dec.zip petitboot-dc96fc7df262a0b72ece710dcfc9ffab1c952dec.tar.gz |
lib/pb-config: Properly initialise interface_config
The addition of the "url" field is not reflected in
config_copy_interface() which leaves the pointer uninitialised, causing
a potential segfault later on.
Copy the field from the source config, and use talloc_zero() for the
interface_config struct to prevent this more generally.
Signed-off-by: Samuel Mendoza-Jonas <sam@mendozajonas.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pb-config/pb-config.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/pb-config/pb-config.c b/lib/pb-config/pb-config.c index 8200883..92c7e74 100644 --- a/lib/pb-config/pb-config.c +++ b/lib/pb-config/pb-config.c @@ -10,7 +10,8 @@ static struct interface_config *config_copy_interface(struct config *ctx, struct interface_config *src) { - struct interface_config *dest = talloc(ctx, struct interface_config); + struct interface_config *dest = talloc_zero(ctx, + struct interface_config); memcpy(dest->hwaddr, src->hwaddr, sizeof(src->hwaddr)); dest->ignore = src->ignore; @@ -28,6 +29,8 @@ static struct interface_config *config_copy_interface(struct config *ctx, talloc_strdup(dest, src->static_config.address); dest->static_config.gateway = talloc_strdup(dest, src->static_config.gateway); + dest->static_config.url = + talloc_strdup(dest, src->static_config.url); break; } |