Home
last modified time | relevance | path

Searched refs:pathsize (Results 1 – 1 of 1) sorted by relevance

/freebsd-13.1/stand/libsa/
H A Dtftp.c449 size_t pathsize; in tftp_open() local
474 pathsize = (strlen(rootpath) + 1 + strlen(path) + 1) * sizeof(char); in tftp_open()
475 tftpfile->path = malloc(pathsize); in tftp_open()
484 res = snprintf(tftpfile->path, pathsize, "%s%s%s", in tftp_open()
486 if (res < 0 || res > pathsize) { in tftp_open()