File tree 2 files changed +5
-10
lines changed
2 files changed +5
-10
lines changed Original file line number Diff line number Diff line change @@ -218,14 +218,14 @@ template <class StepAlgorithm>
218
218
std::string GDALAbstractPipelineAlgorithm<StepAlgorithm>::GetUsageAsJSON() const
219
219
{
220
220
CPLJSONDocument oDoc;
221
- oDoc.LoadMemory (GDALAlgorithm::GetUsageAsJSON ());
221
+ CPL_IGNORE_RET_VAL ( oDoc.LoadMemory (GDALAlgorithm::GetUsageAsJSON () ));
222
222
223
223
CPLJSONArray jPipelineSteps;
224
224
for (const std::string &name : m_stepRegistry.GetNames ())
225
225
{
226
226
auto alg = GetStepAlg (name);
227
227
CPLJSONDocument oStepDoc;
228
- oStepDoc.LoadMemory (alg->GetUsageAsJSON ());
228
+ CPL_IGNORE_RET_VAL ( oStepDoc.LoadMemory (alg->GetUsageAsJSON () ));
229
229
jPipelineSteps.Add (oStepDoc.GetRoot ());
230
230
}
231
231
oDoc.GetRoot ().Add (" pipeline_algorithms" , jPipelineSteps);
Original file line number Diff line number Diff line change @@ -58,16 +58,11 @@ struct LIBERTIFFDatasetFileReader final : public LIBERTIFF_NS::FileReader
58
58
59
59
uint64_t size () const override
60
60
{
61
- // coverity[missing_lock,lock_evasion]
61
+ std::lock_guard oLock (m_oMutex);
62
62
if (m_nFileSize == 0 )
63
63
{
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 ();
71
66
}
72
67
return m_nFileSize;
73
68
}
You can’t perform that action at this time.
0 commit comments