diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2019-03-27 13:01:10 +0100 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2019-03-27 13:01:10 +0100 |
| commit | 15a9adb5ff112184ea5abfe083ea280b7bef7dd4 (patch) | |
| tree | 8ab14ad3fd22526e73af65d1495935c4ec20ef98 | |
| parent | e3806d999a86a1ab0e832f1ab6586ad181f64be1 (diff) | |
| download | PROJ-15a9adb5ff112184ea5abfe083ea280b7bef7dd4.tar.gz PROJ-15a9adb5ff112184ea5abfe083ea280b7bef7dd4.zip | |
factory.cpp: silence false positive warning. Coverity CID 193544
| -rw-r--r-- | src/iso19111/factory.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/iso19111/factory.cpp b/src/iso19111/factory.cpp index e42ed89f..f24b3457 100644 --- a/src/iso19111/factory.cpp +++ b/src/iso19111/factory.cpp @@ -1623,6 +1623,7 @@ static double normalizeMeasure(const std::string &uom_code, (c_locale_stod(seconds) / std::pow(10, seconds.size() - 2)) / 3600.); normalized_uom_code = common::UnitOfMeasure::DEGREE.code(); + /* coverity[overflow_sink] */ return normalized_value; } else { normalized_uom_code = uom_code; |
