Skip to content

Commit e66f5cf

Browse files
added check when pbuffer_get_data returns error
1 parent 4ba1866 commit e66f5cf

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

libraries/lwIpWrapper/src/lwipClient.cpp

+6-2
Original file line numberDiff line numberDiff line change
@@ -171,9 +171,13 @@ int lwipClient::read()
171171
uint8_t b;
172172
if ((_tcp_client != NULL) && (_tcp_client->data.p != NULL)) {
173173
__disable_irq();
174-
pbuffer_get_data(&(_tcp_client->data), &b, 1);
174+
int rv = pbuffer_get_data(&(_tcp_client->data), &b, 1);
175175
__enable_irq();
176-
return b;
176+
if(rv == 1) {
177+
return b;
178+
} else {
179+
return -1;
180+
}
177181
}
178182
// No data available
179183
return -1;

0 commit comments

Comments
 (0)