Skip to content

Commit 196f855

Browse files
committed
Fix Coverity warnings
1 parent 9581c77 commit 196f855

File tree

2 files changed

+5
-10
lines changed

2 files changed

+5
-10
lines changed

apps/gdalalg_abstract_pipeline.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -218,14 +218,14 @@ template <class StepAlgorithm>
218218
std::string GDALAbstractPipelineAlgorithm<StepAlgorithm>::GetUsageAsJSON() const
219219
{
220220
CPLJSONDocument oDoc;
221-
oDoc.LoadMemory(GDALAlgorithm::GetUsageAsJSON());
221+
CPL_IGNORE_RET_VAL(oDoc.LoadMemory(GDALAlgorithm::GetUsageAsJSON()));
222222

223223
CPLJSONArray jPipelineSteps;
224224
for (const std::string &name : m_stepRegistry.GetNames())
225225
{
226226
auto alg = GetStepAlg(name);
227227
CPLJSONDocument oStepDoc;
228-
oStepDoc.LoadMemory(alg->GetUsageAsJSON());
228+
CPL_IGNORE_RET_VAL(oStepDoc.LoadMemory(alg->GetUsageAsJSON()));
229229
jPipelineSteps.Add(oStepDoc.GetRoot());
230230
}
231231
oDoc.GetRoot().Add("pipeline_algorithms", jPipelineSteps);

frmts/libertiff/libertiffdataset.cpp

+3-8
Original file line numberDiff line numberDiff line change
@@ -58,16 +58,11 @@ struct LIBERTIFFDatasetFileReader final : public LIBERTIFF_NS::FileReader
5858

5959
uint64_t size() const override
6060
{
61-
// coverity[missing_lock,lock_evasion]
61+
std::lock_guard oLock(m_oMutex);
6262
if (m_nFileSize == 0)
6363
{
64-
std::lock_guard oLock(m_oMutex);
65-
// cppcheck-suppress identicalInnerCondition
66-
if (m_nFileSize == 0)
67-
{
68-
m_fp->Seek(0, SEEK_END);
69-
m_nFileSize = m_fp->Tell();
70-
}
64+
m_fp->Seek(0, SEEK_END);
65+
m_nFileSize = m_fp->Tell();
7166
}
7267
return m_nFileSize;
7368
}

0 commit comments

Comments
 (0)