Home | History | Annotate | Download | only in util

Lines Matching refs:new_path

367 			 char **new_path)
377 *new_path = strdup(raw_path);
384 *new_path = malloc((strlen(prefix) + strlen(raw_path) + 2));
385 if (!*new_path)
389 sprintf(*new_path, "%s/%s", prefix, raw_path);
391 if (access(*new_path, R_OK) == 0)
405 free(*new_path);
406 *new_path = NULL;
412 free(*new_path);
413 *new_path = NULL;