Skip to content

Commit

Permalink
Merge pull request opencv#12391 from DEEPIR:master
Browse files Browse the repository at this point in the history
fix some errors found by static analyzer. (opencv#12391)

* fix possible divided by zero and by negative values

* only 4 elements are used in these arrays

* fix uninitialized member

* use boolean type for semantic boolean variables

* avoid invalid array index

* to avoid exception and because base64_beg is only used in this block

* use std::atomic<bool> to avoid thread control race condition
  • Loading branch information
cyyever authored and alalek committed Sep 4, 2018
1 parent f826709 commit 10fb88d
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 13 deletions.
4 changes: 2 additions & 2 deletions modules/core/src/matrix_wrap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -939,7 +939,7 @@ bool _InputArray::isContinuous(int i) const
if( k == STD_VECTOR_MAT )
{
const std::vector<Mat>& vv = *(const std::vector<Mat>*)obj;
CV_Assert((size_t)i < vv.size());
CV_Assert(i >= 0 && (size_t)i < vv.size());
return vv[i].isContinuous();
}

Expand All @@ -953,7 +953,7 @@ bool _InputArray::isContinuous(int i) const
if( k == STD_VECTOR_UMAT )
{
const std::vector<UMat>& vv = *(const std::vector<UMat>*)obj;
CV_Assert((size_t)i < vv.size());
CV_Assert(i >= 0 && (size_t)i < vv.size());
return vv[i].isContinuous();
}

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/parallel_impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ class ParallelJob
std::atomic<int> completed_thread_count; // number of threads completed any activities on this job
int64 dummy2_[8]; // avoid cache-line reusing for the same atomics

volatile bool is_completed; // std::atomic_flag ?
std::atomic<bool> is_completed;

// TODO exception handling
};
Expand Down
4 changes: 2 additions & 2 deletions modules/core/src/persistence_json.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -238,11 +238,11 @@ static char* icvJSONParseValue( CvFileStorage* fs, char* ptr, CvFileNode* node )
CV_PARSE_ERROR("Invalid `dt` in Base64 header");
}

/* set base64_beg to beginning of base64 data */
base64_beg = &base64_buffer.at( base64::ENCODED_HEADER_SIZE );

if ( base64_buffer.size() > base64::ENCODED_HEADER_SIZE )
{
/* set base64_beg to beginning of base64 data */
base64_beg = &base64_buffer.at( base64::ENCODED_HEADER_SIZE );
if ( !base64::base64_valid( base64_beg, 0U, base64_end - base64_beg ) )
CV_PARSE_ERROR( "Invalid Base64 data." );

Expand Down
3 changes: 1 addition & 2 deletions modules/cudaarithm/src/arithm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,6 @@ namespace
Size block_size;
Size user_block_size;
Size dft_size;
int spect_len;

GpuMat image_spect, templ_spect, result_spect;
GpuMat image_block, templ_block, result_data;
Expand Down Expand Up @@ -484,7 +483,7 @@ namespace
createContinuous(dft_size, CV_32F, templ_block);
createContinuous(dft_size, CV_32F, result_data);

spect_len = dft_size.height * (dft_size.width / 2 + 1);
int spect_len = dft_size.height * (dft_size.width / 2 + 1);
createContinuous(1, spect_len, CV_32FC2, image_spect);
createContinuous(1, spect_len, CV_32FC2, templ_spect);
createContinuous(1, spect_len, CV_32FC2, result_spect);
Expand Down
2 changes: 1 addition & 1 deletion modules/imgcodecs/src/grfmt_jpeg2000.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ bool Jpeg2KDecoder::readData( Mat& img )
{
Ptr<Jpeg2KDecoder> close_this(this, Jpeg2KDecoder_close);
bool result = false;
int color = img.channels() > 1;
bool color = img.channels() > 1;
uchar* data = img.ptr();
size_t step = img.step;
jas_stream_t* stream = (jas_stream_t*)m_stream;
Expand Down
2 changes: 1 addition & 1 deletion modules/imgcodecs/src/grfmt_png.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ bool PngDecoder::readData( Mat& img )
volatile bool result = false;
AutoBuffer<uchar*> _buffer(m_height);
uchar** buffer = _buffer.data();
int color = img.channels() > 1;
bool color = img.channels() > 1;

png_structp png_ptr = (png_structp)m_png_ptr;
png_infop info_ptr = (png_infop)m_info_ptr;
Expand Down
4 changes: 2 additions & 2 deletions modules/imgcodecs/src/grfmt_pxm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ bool PxMDecoder::readHeader()

bool PxMDecoder::readData( Mat& img )
{
int color = img.channels() > 1;
bool color = img.channels() > 1;
uchar* data = img.ptr();
PaletteEntry palette[256];
bool result = false;
Expand All @@ -225,7 +225,7 @@ bool PxMDecoder::readData( Mat& img )
// create LUT for converting colors
if( bit_depth == 8 )
{
CV_Assert(m_maxval < 256);
CV_Assert(m_maxval < 256 && m_maxval > 0);

for (int i = 0; i <= m_maxval; i++)
gray_palette[i] = (uchar)((i*255/m_maxval)^(m_bpp == 1 ? 255 : 0));
Expand Down
2 changes: 1 addition & 1 deletion modules/imgcodecs/src/grfmt_sunras.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ bool SunRasterDecoder::readHeader()

bool SunRasterDecoder::readData( Mat& img )
{
int color = img.channels() > 1;
bool color = img.channels() > 1;
uchar* data = img.ptr();
size_t step = img.step;
uchar gray_palette[256] = {0};
Expand Down
2 changes: 1 addition & 1 deletion modules/imgproc/src/linefit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ static void fitLine2D( const Point2f * points, int count, int dist,
void (*calc_weights) (float *, int, float *) = 0;
void (*calc_weights_param) (float *, int, float *, float) = 0;
int i, j, k;
float _line[6], _lineprev[6];
float _line[4], _lineprev[4];
float rdelta = reps != 0 ? reps : 1.0f;
float adelta = aeps != 0 ? aeps : 0.01f;
double min_err = DBL_MAX, err = 0;
Expand Down

0 comments on commit 10fb88d

Please sign in to comment.