std.cfg: Use XML-CDATA sections to avoid usage of escape characters in <returnValue>-tags.
This commit is contained in:
parent
684e78f54e
commit
0b643a2429
12
cfg/std.cfg
12
cfg/std.cfg
|
@ -1510,6 +1510,8 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
|
|||
<pure/>
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<!-- ((c>='A' AND c<='Z') OR (c>='a' AND c<='z' )) -->
|
||||
<returnValue type="int"><![CDATA[arg1>='A' && arg1<='Z' || arg1>='a' && arg1 <='z']]></returnValue>
|
||||
<arg nr="1">
|
||||
<not-uninit/>
|
||||
<valid>0:255</valid>
|
||||
|
@ -1521,6 +1523,8 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
|
|||
<pure/>
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<!-- ((c>='A' AND c<='Z') OR (c>='a' AND c<='z' )) -->
|
||||
<returnValue type="int"><![CDATA[arg1>='A' && arg1<='Z' || arg1>='a' && arg1 <='z']]></returnValue>
|
||||
<arg nr="1">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
|
@ -1531,7 +1535,7 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
|
|||
<pure/>
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<returnValue type="int">arg1==' ' || arg1=='\t'</returnValue>
|
||||
<returnValue type="int"><![CDATA[arg1==' ' || arg1=='\t']]></returnValue>
|
||||
<arg nr="1">
|
||||
<not-uninit/>
|
||||
<valid>0:255</valid>
|
||||
|
@ -1543,7 +1547,7 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
|
|||
<pure/>
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<returnValue type="int">arg1==L' ' || arg1==L'\t'</returnValue>
|
||||
<returnValue type="int"><![CDATA[arg1==' ' || arg1=='\t']]></returnValue>
|
||||
<arg nr="1">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
|
@ -1588,7 +1592,7 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
|
|||
<pure/>
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<returnValue type="int">arg1>='0' && arg1<='9'</returnValue>
|
||||
<returnValue type="int"><![CDATA[arg1>='0' && arg1<='9']]></returnValue>
|
||||
<arg nr="1">
|
||||
<not-uninit/>
|
||||
<valid>0:255</valid>
|
||||
|
@ -1600,7 +1604,7 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
|
|||
<pure/>
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<returnValue type="int">arg1>=L'0' && arg1<=L'9'</returnValue>
|
||||
<returnValue type="int"><![CDATA[arg1>='0' && arg1<='9']]></returnValue>
|
||||
<arg nr="1">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
|
|
Loading…
Reference in New Issue