Skip to content

Commit

Permalink
DHCP server address allocated pointer init fix.
Browse files Browse the repository at this point in the history
Change-Id: I331b31f4d695830cabfffa67145faefd5b198d2b
  • Loading branch information
Juha Heiskanen authored and Jarkko Paso committed Nov 19, 2019
1 parent e3fddad commit bc9f07b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/DHCPv6_Server/DHCPv6_Server_service.c
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ static void DHCP_server_service_timer_stop(void)

int DHCPv6_server_respond_client(dhcpv6_gua_server_entry_s *serverBase, dhcpv6_reply_packet_s *replyPacket, dhcp_ia_non_temporal_params_t *dhcp_ia_non_temporal_params, dhcpv6_gua_response_t *response, bool allocateNew)
{
dhcpv6_alloacted_address_entry_t *dhcp_allocated_address;
dhcpv6_alloacted_address_entry_t *dhcp_allocated_address = NULL;
dhcpv6_ia_non_temporal_address_s nonTemporalAddress;
bool address_allocated = false;
//Validate Client DUID
Expand Down

0 comments on commit bc9f07b

Please sign in to comment.