Skip to content
Snippets Groups Projects
Commit 8865cccc authored by alexey.stratulat's avatar alexey.stratulat
Browse files

[*] Fix. The argument to the FindClose function has been edited.

parent 38e7469a
No related branches found
No related tags found
1 merge request!33Features 2954
...@@ -384,7 +384,7 @@ dap_list_t *dap_dir_get_subdirectory(const char *a_path_dir){ ...@@ -384,7 +384,7 @@ dap_list_t *dap_dir_get_subdirectory(const char *a_path_dir){
dap_list_append(list, info_file.cFileName); dap_list_append(list, info_file.cFileName);
} }
} }
FindClose(info_file); FindClose(h_find_file);
DAP_FREE(m_path); DAP_FREE(m_path);
#else #else
DIR *dir = opendir(a_path_dir); DIR *dir = opendir(a_path_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