Removed some unused variables. There's more to be done.

This commit is contained in:
MadCamel
2018-04-06 11:37:48 -04:00
parent b65f72e931
commit 0212f369ab
3 changed files with 2 additions and 8 deletions

View File

@@ -886,11 +886,10 @@ int num_matches(const char *mask, const char *text)
int is_safepath(const char *path, int filemustexist)
{
struct stat st;
ino_t ino;
char tmp[PATH_MAX];
const char *src;
char *dst;
int r,mo,dir_r,orr,oerrno;
int mo,dir_r,orr,oerrno;
#ifdef TEST
memset(&st,0,sizeof(st));