Coverity Tool Result
컴퓨터2010. 12. 24. 11:06
+--------------------------------------------------------------------------------------------+
| Type | Description |
|-------------------+------------------------------------------------------------------------|
| |Calling strncpy with a maximum size argument of (100) on |
|BUFFER_SIZE_WARNING |destination buffer of size (100) can possibly leave the destination |
| |buffer lacking null-termination |
|-------------------+------------------------------------------------------------------------|
|CHECKED_RETURN |Return value is never checked |
|-------------------+------------------------------------------------------------------------|
|CTOR_DTOR_LEAK |A field is allocated in the constructor, and there is no destructor |
|-------------------+------------------------------------------------------------------------|
|DEADCODE |Code isn't reachable |
|-------------------+------------------------------------------------------------------------|
|FORWARD_NULL |Variable tracked as NULL was passed to a function that dereferences it |
|-------------------+------------------------------------------------------------------------|
|NEGATIVE_RETURNS |Unsigned tracked variable used as a loop boundary |
|-------------------+------------------------------------------------------------------------|
|NULL_RETURNS |Dereferencing possibly NULL |
|-------------------+------------------------------------------------------------------------|
|OVERRUN_STATIC |Overrun of static array with index variable |
|-------------------+------------------------------------------------------------------------|
|PASS_BY_VALUE |Parameter passed by value |
|-------------------+------------------------------------------------------------------------|
|RESOURCE_LEAK |Storage not saved |
|-------------------+------------------------------------------------------------------------|
|RETURN_LOCAL |Returning pointer which is assigned to local variable |
|-------------------+------------------------------------------------------------------------|
|REVERSE_INULL |Pointer is dereferenced before NULL check |
|-------------------+------------------------------------------------------------------------|
|STRING_NULL |Unterminated string passed to a string null sink |
|-------------------+------------------------------------------------------------------------|
|TAINTED_SCALAR |TAINTED variable used |
|-------------------+------------------------------------------------------------------------|
|UNINIT |Using uninitialized value |
|-------------------+------------------------------------------------------------------------|
|UNUSED_VALUE |Pointer returned from a function is never used |
|-------------------+------------------------------------------------------------------------|
|USE_AFTER_FREE |Dereferencing freed pointer |
+--------------------------------------------------------------------------------------------+