morningman closed pull request #461: Fix compile error URL: https://github.com/apache/incubator-doris/pull/461
This is a PR merged from a forked repository. As GitHub hides the original diff on merge, it is displayed below for the sake of provenance: As this is a foreign pull request (from a fork), the diff is supplied below (as it won't show otherwise due to GitHub magic): diff --git a/be/src/util/file_utils.cpp b/be/src/util/file_utils.cpp index a0cd5dca..bc3dfbdb 100644 --- a/be/src/util/file_utils.cpp +++ b/be/src/util/file_utils.cpp @@ -96,7 +96,7 @@ Status FileUtils::scan_dir( int64_t count = 0; while (true) { - auto result = readdir(dir.get()); + auto result = readdir(dir); if (result == nullptr) { break; } @@ -129,7 +129,6 @@ Status FileUtils::scan_dir( return Status("fail to opendir"); } - struct dirent* result = nullptr; while (true) { auto result = readdir(dir.get()); if (result == nullptr) { ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@doris.apache.org For additional commands, e-mail: dev-h...@doris.apache.org