Skip to content

Commit bd01e44

Browse files
martinayotteigrr
authored andcommitted
fix link list bug in ESP8266mDNS (#2347)
1 parent f50a6c0 commit bd01e44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/ESP8266mDNS/ESP8266mDNS.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -639,7 +639,7 @@ void MDNSResponder::_parsePacket(){
639639
else {
640640
answer = _answers;
641641
while (answer->next != 0) {
642-
answer = _answers->next;
642+
answer = answer->next;
643643
}
644644
answer->next = (struct MDNSAnswer*)(os_malloc(sizeof(struct MDNSAnswer)));
645645
answer = answer->next;

0 commit comments

Comments
 (0)