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

/freebsd-11-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-11-stable/contrib/telnet/telnet/
H A Dtelnet.c1519 unsigned char *opt_reply = NULL; variable
1526 if (opt_reply)
1527 opt_reply = (unsigned char *)realloc(opt_reply, OPT_REPLY_SIZE);
1529 opt_reply = (unsigned char *)malloc(OPT_REPLY_SIZE);
1530 if (opt_reply == NULL) {
1532 opt_reply = opt_replyp = opt_replyend = NULL;
1535 opt_replyp = opt_reply;
1536 opt_replyend = opt_reply + OPT_REPLY_SIZE;
1556 if (opt_reply
[all...]

Completed in 171 milliseconds