mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
Fix a windows compilation warning from sandboxing branch
This commit is contained in:
+1
-1
@@ -3040,7 +3040,6 @@ smartlist_t *
|
||||
tor_listdir(const char *dirname)
|
||||
{
|
||||
smartlist_t *result;
|
||||
const char *prot_dname = sandbox_intern_string(dirname);
|
||||
#ifdef _WIN32
|
||||
char *pattern=NULL;
|
||||
TCHAR tpattern[MAX_PATH] = {0};
|
||||
@@ -3082,6 +3081,7 @@ tor_listdir(const char *dirname)
|
||||
FindClose(handle);
|
||||
tor_free(pattern);
|
||||
#else
|
||||
const char *prot_dname = sandbox_intern_string(dirname);
|
||||
DIR *d;
|
||||
struct dirent *de;
|
||||
if (!(d = opendir(prot_dname)))
|
||||
|
||||
Reference in New Issue
Block a user