4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-18 14:43:31 +08:00

[LWIP] Fix lwip 2.0.2 TFTP server file name trans error.

This commit is contained in:
armink 2017-08-19 20:20:05 +08:00
parent b53e3c2568
commit 38ca426626

View File

@ -226,7 +226,7 @@ recv(void *arg, struct udp_pcb *upcb, struct pbuf *p, const ip_addr_t *addr, u16
case PP_HTONS(TFTP_WRQ): case PP_HTONS(TFTP_WRQ):
{ {
const char tftp_null = 0; const char tftp_null = 0;
char filename[TFTP_MAX_FILENAME_LEN] = { 0 }; char filename[TFTP_MAX_FILENAME_LEN + 1] = { 0 };
char mode[TFTP_MAX_MODE_LEN] = { 0 }; char mode[TFTP_MAX_MODE_LEN] = { 0 };
u16_t filename_end_offset; u16_t filename_end_offset;
u16_t mode_end_offset; u16_t mode_end_offset;