We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aace1a9 commit 139cab6Copy full SHA for 139cab6
libraries/ESP8266WiFi/src/include/ClientContext.h
@@ -58,7 +58,7 @@ class ClientContext
58
tcp_err(_pcb, NULL);
59
tcp_poll(_pcb, NULL, 0);
60
tcp_abort(_pcb);
61
- _pcb = 0;
+ _pcb = nullptr;
62
}
63
return ERR_ABRT;
64
@@ -79,7 +79,7 @@ class ClientContext
79
80
err = ERR_ABRT;
81
82
83
84
return err;
85
@@ -536,7 +536,7 @@ class ClientContext
536
tcp_sent(_pcb, NULL);
537
tcp_recv(_pcb, NULL);
538
539
- _pcb = NULL;
540
_notify_error();
541
542
0 commit comments