[Lldb-commits] [lldb] r241071 - Fix windows build.
Vince Harron
vince at nethacker.com
Tue Jun 30 08:20:09 PDT 2015
+chaorenl
On Tue, Jun 30, 2015 at 8:03 AM, Ewan Crawford <ewan at codeplay.com> wrote:
> Author: ewancrawford
> Date: Tue Jun 30 10:03:31 2015
> New Revision: 241071
>
> URL: http://llvm.org/viewvc/llvm-project?rev=241071&view=rev
> Log:
> Fix windows build.
>
> Windows build was broken in either r240983 or r240978 in the changes to
> FileSpec.cpp
>
> Modified:
> lldb/trunk/source/Host/common/FileSpec.cpp
>
> Modified: lldb/trunk/source/Host/common/FileSpec.cpp
> URL:
> http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Host/common/FileSpec.cpp?rev=241071&r1=241070&r2=241071&view=diff
>
> ==============================================================================
> --- lldb/trunk/source/Host/common/FileSpec.cpp (original)
> +++ lldb/trunk/source/Host/common/FileSpec.cpp Tue Jun 30 10:03:31 2015
> @@ -1088,7 +1088,6 @@ FileSpec::ForEachItemInDirectory (const
>
> do
> {
> - bool call_callback = false;
> FileSpec::FileType file_type = eFileTypeUnknown;
> if (ffd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
> {
> @@ -1101,54 +1100,49 @@ FileSpec::ForEachItemInDirectory (const
> continue;
>
> file_type = eFileTypeDirectory;
> - call_callback = find_directories;
> }
> else if (ffd.dwFileAttributes & FILE_ATTRIBUTE_DEVICE)
> {
> file_type = eFileTypeOther;
> - call_callback = find_other;
> }
> else
> {
> file_type = eFileTypeRegular;
> - call_callback = find_files;
> }
> - if (call_callback)
> - {
> - char child_path[MAX_PATH];
> - const int child_path_len = ::snprintf (child_path,
> sizeof(child_path), "%s\\%s", dir_path, ffd.cFileName);
> - if (child_path_len < (int)(sizeof(child_path) - 1))
> - {
> - // Don't resolve the file type or path
> - FileSpec child_path_spec (child_path, false);
>
> - EnumerateDirectoryResult result = callback
> (file_type, child_path_spec);
> + char child_path[MAX_PATH];
> + const int child_path_len = ::snprintf (child_path,
> sizeof(child_path), "%s\\%s", dir_path, ffd.cFileName);
> + if (child_path_len < (int)(sizeof(child_path) - 1))
> + {
> + // Don't resolve the file type or path
> + FileSpec child_path_spec (child_path, false);
>
> - switch (result)
> - {
> - case eEnumerateDirectoryResultNext:
> - // Enumerate next entry in the current
> directory. We just
> - // exit this switch and will continue
> enumerating the
> - // current directory as we currently are...
> - break;
> -
> - case eEnumerateDirectoryResultEnter: // Recurse
> into the current entry if it is a directory or symlink, or next if not
> - if
> (FileSpec::ForEachItemInDirectory(child_path, callback) ==
> eEnumerateDirectoryResultQuit)
> - {
> - // The subdirectory returned Quit, which
> means to
> - // stop all directory enumerations at all
> levels.
> - return eEnumerateDirectoryResultQuit;
> - }
> - break;
> -
> - case eEnumerateDirectoryResultExit: // Exit from
> the current directory at the current level.
> - // Exit from this directory level and tell
> parent to
> - // keep enumerating.
> - return eEnumerateDirectoryResultNext;
> + EnumerateDirectoryResult result = callback (file_type,
> child_path_spec);
>
> - case eEnumerateDirectoryResultQuit: // Stop
> directory enumerations at any level
> + switch (result)
> + {
> + case eEnumerateDirectoryResultNext:
> + // Enumerate next entry in the current directory.
> We just
> + // exit this switch and will continue enumerating
> the
> + // current directory as we currently are...
> + break;
> +
> + case eEnumerateDirectoryResultEnter: // Recurse into
> the current entry if it is a directory or symlink, or next if not
> + if (FileSpec::ForEachItemInDirectory(child_path,
> callback) == eEnumerateDirectoryResultQuit)
> + {
> + // The subdirectory returned Quit, which
> means to
> + // stop all directory enumerations at all
> levels.
> return eEnumerateDirectoryResultQuit;
> - }
> + }
> + break;
> +
> + case eEnumerateDirectoryResultExit: // Exit from the
> current directory at the current level.
> + // Exit from this directory level and tell parent
> to
> + // keep enumerating.
> + return eEnumerateDirectoryResultNext;
> +
> + case eEnumerateDirectoryResultQuit: // Stop
> directory enumerations at any level
> + return eEnumerateDirectoryResultQuit;
> }
> }
> } while (FindNextFile(hFind, &ffd) != 0);
>
>
> _______________________________________________
> lldb-commits mailing list
> lldb-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20150630/912c1442/attachment.html>
More information about the lldb-commits
mailing list