aboutsummaryrefslogtreecommitdiff
path: root/lib/tftp.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tftp.c')
-rw-r--r--lib/tftp.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/tftp.c b/lib/tftp.c
index ba7842280..041a5f340 100644
--- a/lib/tftp.c
+++ b/lib/tftp.c
@@ -605,9 +605,13 @@ static CURLcode tftp_state_machine(tftp_state_data_t *state,
static CURLcode Curl_tftp_connect(struct connectdata *conn, bool *done)
{
CURLcode code;
- tftp_state_data_t *state;
+ tftp_state_data_t *state;
int rc;
+ /* If there already is a protocol-specific struct allocated for this
+ sessionhandle, deal with it */
+ Curl_reset_reqproto(conn);
+
state = conn->data->reqdata.proto.tftp = calloc(sizeof(tftp_state_data_t),
1);
if(!state)