File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4411,7 +4411,7 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
44114411 <not-null/>
44124412 <not-uninit/>
44134413 </arg>
4414- <arg nr="2" direction="in" >
4414+ <arg nr="2">
44154415 <not-null/>
44164416 <not-uninit/>
44174417 <minsize type="argvalue" arg="3"/>
@@ -4444,7 +4444,7 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
44444444 <not-null/>
44454445 <not-uninit/>
44464446 </arg>
4447- <arg nr="2" direction="in" >
4447+ <arg nr="2">
44484448 <not-null/>
44494449 <not-uninit/>
44504450 <minsize type="argvalue" arg="3"/>
@@ -4861,7 +4861,7 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
48614861 <returnValue type="char *"/>
48624862 <noreturn>false</noreturn>
48634863 <leak-ignore/>
4864- <arg nr="1" direction="in" >
4864+ <arg nr="1">
48654865 <not-null/>
48664866 <not-uninit/>
48674867 <strz/>
@@ -5044,7 +5044,7 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
50445044 <returnValue type="char *"/>
50455045 <noreturn>false</noreturn>
50465046 <leak-ignore/>
5047- <arg nr="1" direction="in" >
5047+ <arg nr="1">
50485048 <not-null/>
50495049 <not-uninit/>
50505050 <strz/>
@@ -5433,7 +5433,7 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
54335433 <returnValue type="char *"/>
54345434 <noreturn>false</noreturn>
54355435 <leak-ignore/>
5436- <arg nr="1" direction="in" >
5436+ <arg nr="1">
54375437 <not-null/>
54385438 <not-uninit/>
54395439 <strz/>
Original file line number Diff line number Diff line change @@ -3519,6 +3519,13 @@ void invalidFunctionArg_strchr(const char *cs, int c)
35193519 (void )strchr (cs , 256 );
35203520}
35213521
3522+ void constParameterPointer_strchr (char * str ) // #14453
3523+ {
3524+ char * sep = strchr (str , ':' );
3525+ if (sep )
3526+ * sep = '\0' ;
3527+ }
3528+
35223529void invalidFunctionArg_log10 (float f , double d , const long double ld )
35233530{
35243531 // cppcheck-suppress invalidFunctionArg
You can’t perform that action at this time.
0 commit comments