diff options
-rw-r--r-- | core/src/fpdftext/fpdf_text_int.cpp | 1 | ||||
-rw-r--r-- | samples/pdfium_test.cc | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/core/src/fpdftext/fpdf_text_int.cpp b/core/src/fpdftext/fpdf_text_int.cpp index 3d4bc36ed5..c8369fda1f 100644 --- a/core/src/fpdftext/fpdf_text_int.cpp +++ b/core/src/fpdftext/fpdf_text_int.cpp @@ -1887,7 +1887,6 @@ void CPDF_TextPage::ProcessTextObject(PDFTEXT_Obj Obj) FX_WCHAR * pTempBuffer = m_TempTextBuf.GetBuffer(); i = iBufStartAppend; j = m_TempTextBuf.GetLength() - 1; - FX_WCHAR wTemp; for (; i < j; i++, j--) { std::swap(pTempBuffer[i], pTempBuffer[j]); } diff --git a/samples/pdfium_test.cc b/samples/pdfium_test.cc index db09a1b963..2ff8f5bbf1 100644 --- a/samples/pdfium_test.cc +++ b/samples/pdfium_test.cc @@ -282,7 +282,7 @@ bool ParseCommandLine(const std::vector<std::string>& args, return false; } options->exe_path = args[0]; - int cur_idx = 1; + size_t cur_idx = 1; for (; cur_idx < args.size(); ++cur_idx) { const std::string& cur_arg = args[cur_idx]; if (cur_arg == "--ppm") { @@ -324,7 +324,7 @@ bool ParseCommandLine(const std::vector<std::string>& args, fprintf(stderr, "No input files.\n"); return false; } - for (int i = cur_idx; i < args.size(); i++) { + for (size_t i = cur_idx; i < args.size(); i++) { files->push_back(args[i]); } return true; |