Skip to content
Snippets Groups Projects
Commit 397ee7c0 authored by stijn's avatar stijn Committed by Damien George
Browse files

windows/msvc: Fix incorrect indentation in dirent.c.

parent 18f45d2e
No related branches found
No related tags found
No related merge requests found
......@@ -42,8 +42,8 @@ DIR *opendir(const char *name) {
DIR *dir = malloc(sizeof(DIR));
if (!dir) {
errno = ENOMEM;
return NULL;
errno = ENOMEM;
return NULL;
}
dir->result.d_ino = 0;
dir->result.d_name = NULL;
......@@ -52,9 +52,9 @@ DIR *opendir(const char *name) {
const size_t nameLen = strlen(name);
char *path = malloc(nameLen + 3); // allocate enough for adding "/*"
if (!path) {
free(dir);
errno = ENOMEM;
return NULL;
free(dir);
errno = ENOMEM;
return NULL;
}
strcpy(path, name);
......@@ -69,9 +69,9 @@ DIR *opendir(const char *name) {
dir->findHandle = FindFirstFile(path, &dir->findData);
free(path);
if (dir->findHandle == INVALID_HANDLE_VALUE) {
free(dir);
errno = ENOENT;
return NULL;
free(dir);
errno = ENOENT;
return NULL;
}
return dir;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment