Skip to content

Commit

Permalink
fix link list bug in ESP8266mDNS (esp8266#2347)
Browse files Browse the repository at this point in the history
  • Loading branch information
martinayotte authored and igrr committed Aug 1, 2016
1 parent f50a6c0 commit bd01e44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/ESP8266mDNS/ESP8266mDNS.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,7 @@ void MDNSResponder::_parsePacket(){
else {
answer = _answers;
while (answer->next != 0) {
answer = _answers->next;
answer = answer->next;
}
answer->next = (struct MDNSAnswer*)(os_malloc(sizeof(struct MDNSAnswer)));
answer = answer->next;
Expand Down

0 comments on commit bd01e44

Please sign in to comment.