mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
COMP: labelBits: unsigned integer overflow
This commit is contained in:
@ -2,7 +2,7 @@
|
|||||||
========= |
|
========= |
|
||||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||||
\\ / O peration |
|
\\ / O peration |
|
||||||
\\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
|
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
@ -55,14 +55,14 @@ class labelBits
|
|||||||
|
|
||||||
label data_;
|
label data_;
|
||||||
|
|
||||||
inline static label pack(const label val, const direction bits)
|
inline static label pack(const uLabel val, const direction bits)
|
||||||
{
|
{
|
||||||
# ifdef FULLDEBUG
|
# ifdef FULLDEBUG
|
||||||
if (bits > 7 || (((val<<3)>>3) != val))
|
if (bits > 7 || (((val<<3)>>3) != val))
|
||||||
{
|
{
|
||||||
FatalErrorIn
|
FatalErrorIn
|
||||||
(
|
(
|
||||||
"labelBits::pack(const label, const direction)"
|
"labelBits::pack(const uLabel, const direction)"
|
||||||
) << "Direction " << bits << " outside range 0..7"
|
) << "Direction " << bits << " outside range 0..7"
|
||||||
<< abort(FatalError);
|
<< abort(FatalError);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user