Searched refs:opt_reply (Results 1 - 2 of 2) sorted by relevance

/freebsd-10-stable/crypto/heimdal/appl/telnet/telnet/
H A Dtelnet.c1429 unsigned char *opt_reply; variable
1436 if (opt_reply) {
1437 void *tmp = realloc (opt_reply, OPT_REPLY_SIZE);
1439 opt_reply = tmp;
1441 free (opt_reply);
1442 opt_reply = NULL;
1445 opt_reply = (unsigned char *)malloc(OPT_REPLY_SIZE);
1446 if (opt_reply == NULL) {
1448 opt_reply = opt_replyp = opt_replyend = NULL;
1451 opt_replyp = opt_reply;
[all...]
/freebsd-10-stable/contrib/telnet/telnet/
H A Dtelnet.c1523 unsigned char *opt_reply = NULL; variable
1530 if (opt_reply)
1531 opt_reply = (unsigned char *)realloc(opt_reply, OPT_REPLY_SIZE);
1533 opt_reply = (unsigned char *)malloc(OPT_REPLY_SIZE);
1534 if (opt_reply == NULL) {
1536 opt_reply = opt_replyp = opt_replyend = NULL;
1539 opt_replyp = opt_reply;
1540 opt_replyend = opt_reply + OPT_REPLY_SIZE;
1560 if (opt_reply
[all...]

Completed in 38 milliseconds