Skip to content

Commit 9ed7f65

Browse files
committed
Suppress cppcheck exceptions
Adding exception to the cppcheck issues that are flagged in the existing codebase. In this way it is easier to monitor comming changes.
1 parent ccf3576 commit 9ed7f65

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

lib/experimental/segyio/segyio.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ class basic_file : public Traits< basic_file< Traits... > >... {
426426
explicit
427427
basic_file( const segyio::path& path,
428428
const segyio::config& cfg = config() ) noexcept(false)
429-
: Traits< basic_file >( {} ) ... {
429+
: Traits< basic_file >( {} ) ... { // cppcheck-suppress internalAstError
430430

431431
this->consider( path );
432432

lib/src/segy.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -821,7 +821,7 @@ static int memread( void* dest, const segy_file* fp, const void* src, size_t n )
821821
return SEGY_OK;
822822
}
823823

824-
static int memwrite( segy_file* fp, void* dest, const void* src, size_t n ) {
824+
static int memwrite( segy_file* fp, void* dest, const void* src, size_t n ) { // cppcheck-suppress constParameterPointer
825825
const void* begin = fp->addr;
826826
const void* end = (const char*)fp->addr + fp->fsize;
827827
const void* destend = (const char*)dest + n;
@@ -1897,7 +1897,7 @@ int segy_readsubtr( segy_file* fp,
18971897
*/
18981898
void* tracebuf = rangebuf ? rangebuf : malloc( elems * elemsize );
18991899

1900-
const int readc = (int) fread( tracebuf, elemsize, elems, fp->fp );
1900+
const int readc = (int) fread( tracebuf, elemsize, elems, fp->fp ); // cppcheck-suppress nullPointerOutOfMemory
19011901
if( readc != elems ) {
19021902
if( !rangebuf ) free( tracebuf );
19031903
return SEGY_FREAD_ERROR;
@@ -2013,7 +2013,7 @@ int segy_writesubtr( segy_file* fp,
20132013
*/
20142014
if( !fp->addr && (step == 1 || step == -1) && fp->lsb ) {
20152015
void* tracebuf = rangebuf ? rangebuf : malloc( elems * elemsize );
2016-
memcpy( tracebuf, buf, elemsize * elems );
2016+
memcpy( tracebuf, buf, elemsize * elems ); // cppcheck-suppress nullPointerOutOfMemory
20172017

20182018
if (step == -1) reverse(tracebuf, elems, elemsize);
20192019
if (fp->elemsize == 8) bswap64vec(tracebuf, elems);
@@ -2061,7 +2061,7 @@ int segy_writesubtr( segy_file* fp,
20612061
void* tracebuf = rangebuf ? rangebuf : malloc( elems * elemsize );
20622062

20632063
// like in readsubtr, read a larger chunk and then step through that
2064-
const int readc = (int) fread( tracebuf, elemsize, elems, fp->fp );
2064+
const int readc = (int) fread( tracebuf, elemsize, elems, fp->fp ); // cppcheck-suppress nullPointerOutOfMemory
20652065
if( readc != elems ) { free( tracebuf ); return SEGY_FREAD_ERROR; }
20662066
/* rewind, because fread advances the file pointer */
20672067
err = fseek( fp->fp, -(elems * elemsize), SEEK_CUR );

lib/test/segy.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1762,7 +1762,7 @@ SCENARIO( "reading a 2-byte int file", "[c.segy][2-byte]" ) {
17621762
CHECK( trace_bsize == 75 * 2 );
17631763
}
17641764

1765-
WHEN( "the format is valid" ) THEN( "setting format succeeds" ) {
1765+
WHEN( "the format is valid" ) THEN( "setting format succeeds" ) { // cppcheck-suppress unknownMacro
17661766
Err err = segy_set_format( fp, format );
17671767
CHECK( err == Err::ok() );
17681768
}

0 commit comments

Comments
 (0)