JavaScript is not currently enabled, but is required for full CodeSonar manual search and browse functionality.
If you are viewing this file in your hub's Web GUI, enable JavaScript in your browser: you will also need it for GUI functionality.
If you opened this file directly from disk, your browser may be directly suppressing JavaScript functionality: certain browsers perform this suppression on local files (but not files delivered by web servers) for security reasons.
| CodeSonar® 9.2p0 | CONFIDENTIAL | CodeSecure Inc |
非const修飾型へのポインタPが宣言されていますが、このPはオブジェクトを変更する為に使用されていません。
このワーニングクラスの警告は、もしポインタPが非const修飾型を指すように宣言された他のポインタQに割り当てられた場合には発行されません。
このワーニングクラスの警告は、あらゆる非const修飾型の要素をもつ配列型の仮引数Aに対して、もしAのどの要素も変更されない場合(尚且つ、上記のようにAがポインタQに割り当てられない場合)に発行されます。 これは CodeSonar がCコンパイラーと同様に、配列型の仮引数をポインタとして扱うためです。
| クラス名 | Pointed-to Type Could Be const | ||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 日本語クラス名 | const修飾が可能なポインタ型 | ||||||||||||||||||||||||
| クラス分類 | スタイル (style) | ||||||||||||||||||||||||
| ニーモニック | LANG.TYPE.CBCONST | ||||||||||||||||||||||||
| カテゴリー |
|
||||||||||||||||||||||||
| 対応言語 | C および C++ で利用可能です。 |
||||||||||||||||||||||||
| 有効/無効設定 | このワーニングクラスのチェックはデフォルトで無効になっており、プロジェクトには非正規の C向けAST
が必要になります。有効にするにはプロジェクト設定ファイル (configuration file) に以下の WARNING_FILTER ルールと
RETAIN_UNNORMALIZED_C_AST 設定を追加してください。
RETAIN_UNNORMALIZED_C_AST = Yes WARNING_FILTER += allow class="Pointed-to Type Could Be const" |
int cbconst_ptr(const char *ptr_const, /* ok: pointed-to type is const-qualified */ char *ptr_modified, /* ok: used to modify an object */ char *ptr_assigned, /* ok: assigned to a pointer to non-const-qualified type */ char *ptr_cbc, /* 'Pointed-to Type Could Be const' warning issued here */ int arr_cbc[5]) /* 'Pointed-to Type Could Be const' warning issued here */ { char *local_ptr_cbc; /* 'Pointed-to Type Could Be const' warning issued here */ *ptr_modified='a'; local_ptr_cbc=ptr_assigned; return (int)(*local_ptr_cbc + *ptr_const + *ptr_modified + *ptr_cbc) + arr_cbc[1]; }
設定ファイルの以下のパラメータがこのワーニングクラスのチェックに影響します。
To report problems with this documentation, please visit https://support.codesecure.com/.