gnash-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-dev] static source code analysis


From: Bastiaan Jacques
Subject: [Gnash-dev] static source code analysis
Date: Sun, 7 Sep 2008 12:15:32 -0700 (PDT)
User-agent: Alpine 1.00 (DEB 882 2007-12-20)

Hi,

I've run the Gnash sources through two static source code analysis
programs. They show a lot of things that are not necessarily huge
issues, but in a lot of cases worth looking at. That said, there are a
lot of things coming from libltdl and other software we imported.

Here's the output that was generated:


C++check:

[extensions/fileio/fileio.cpp:453]: Found 'gets'. You should use 'fgets' instead
[gui/fltk_glue_cairo.cpp:53] Uninitialized member variable 
'FltkCairoGlue::_cairo_handle'
[gui/fltk_glue_cairo.cpp:53] Uninitialized member variable 
'FltkCairoGlue::_cairo_surface'
[gui/fltk_glue_cairo.cpp:53] Uninitialized member variable 
'FltkCairoGlue::_renderer'
[gui/fltk_glue_cairo.cpp:53] Uninitialized member variable 
'FltkCairoGlue::_stride'
[gui/fltk_glue_cairo.cpp:53] Uninitialized member variable 
'FltkCairoGlue::_height'
[gui/fltk_glue_cairo.cpp:53] Uninitialized member variable 
'FltkCairoGlue::_width'
[gui/gui.cpp:76] Uninitialized member variable 'Gui::fps_rate_max'
[gui/gui.cpp:76] Uninitialized member variable 'Gui::fps_rate_min'
[gui/gui.cpp:117] Uninitialized member variable 'Gui::fps_rate_max'
[gui/gui.cpp:117] Uninitialized member variable 'Gui::fps_rate_min'
[libamf/sol.cpp:206]: Mismatching allocation and deallocation: hexint
[libbase/shm.cpp:439]: Using 'memcpy' on class.
[libbase/shm.h:120] Uninitialized member variable 'ShmAlloc::mmptr'
[libbase/shm.h:122] Uninitialized member variable 'ShmAlloc::mmptr'
[libbase/shm.h:127] Uninitialized member variable 'ShmAlloc::mmptr'
[libcore/FreetypeGlyphsProvider.cpp:398] Uninitialized member variable 
'FreetypeGlyphsProvider::scale'
[libcore/SWFStream.cpp:326]: Array index out of bounds
[libcore/SWFStream.cpp:327]: Array index out of bounds
[libcore/SWFStream.cpp:328]: Array index out of bounds
[libcore/SWFStream.cpp:329]: Array index out of bounds
[libcore/asClass.h:101] Uninitialized member variable 'Property::mOrderId'
[libcore/asClass.h:107] Uninitialized member variable 'Property::mOrderId'
[libcore/asClass.h:112] Uninitialized member variable 'Property::mOrderId'
[libcore/asClass.h:117] Uninitialized member variable 'Property::mOrderId'
[libcore/asClass.h:122] Uninitialized member variable 'Property::mOrderId'
[libcore/asClass.h:127] Uninitialized member variable 'Property::mOrderId'
[libcore/asClass.h:132] Uninitialized member variable 'Property::mOrderId'
[libcore/asClass.h:298] Uninitialized member variable 'asBoundValue::mType'
[libcore/asClass.cpp:32] Uninitialized member variable 'asMethod::mFlags'
[libcore/asClass.cpp:32] Uninitialized member variable 
'asMethod::mImplementation'
[libcore/asClass.cpp:32] Uninitialized member variable 'asMethod::mIsNative'
[libcore/asClass.cpp:32] Uninitialized member variable 'asMethod::mMaxArguments'
[libcore/asClass.cpp:32] Uninitialized member variable 'asMethod::mMinArguments'
[libcore/asClass.cpp:32] Uninitialized member variable 'asMethod::mPrototype'
[libcore/asClass.h:584] Uninitialized member variable 'asClass::mPrototype'
[libcore/parser/abc_block.h:76] Uninitialized member variable 
'abc_Trait::mStatic'
[libcore/parser/abc_block.h:76] Uninitialized member variable 
'abc_Trait::mMTarget'
[libcore/parser/abc_block.h:76] Uninitialized member variable 
'abc_Trait::mCTarget'
[libcore/parser/abc_block.cpp:1135] Uninitialized member variable 
'abc_block::mS'
[libcore/parser/button_character_def.h:85] Uninitialized member variable 
'button_record::m_button_layer'
[libcore/parser/button_character_def.h:85] Uninitialized member variable 
'button_record::m_character_id'
[libcore/parser/button_character_def.h:85] Uninitialized member variable 
'button_record::m_up'
[libcore/parser/button_character_def.h:85] Uninitialized member variable 
'button_record::m_over'
[libcore/parser/button_character_def.h:85] Uninitialized member variable 
'button_record::m_down'
[libcore/parser/button_character_def.h:85] Uninitialized member variable 
'button_record::m_hit_test'
[libcore/swf/DefineFontAlignZonesTag.cpp:31] Uninitialized member variable 
'DefineFontAlignZonesTag::_font2_id_ref'
[libcore/vm/ASHandlers.cpp:162] Uninitialized member variable 
'SWFHandlers::_debug'
[libmedia/SoundInfo.h:57] Uninitialized member variable 'SoundInfo::_dataSize'
[libmedia/ffmpeg/sound_handler_sdl.h:69] Uninitialized member variable 
'sound_data::volume'
[libnet/http.cpp:76] Uninitialized member variable 'HTTP::_index'
[libnet/http.cpp:76] Uninitialized member variable 'HTTP::_clientid'
[libnet/netstats.cpp:33] Uninitialized member variable 'NetStats::_bytes'
[testsuite/MovieTester.cpp:69] Uninitialized member variable 'MovieTester::_y'
[testsuite/MovieTester.cpp:69] Uninitialized member variable 'MovieTester::_x'
[testsuite/libbase/memtest.cpp:119]: Mismatching allocation and deallocation: x

Flawfinder:

trunk/extensions/fileio/fileio.cpp:453:  [5] (buffer) gets:
Does not check for buffer overflows. Use fgets() instead. trunk/libbase/jemalloc.c:5067: [5] (race) readlink:
  This accepts filename arguments; if an attacker can move those files
  or change the link content, a race condition results.  Also, it does not
terminate with ASCII NUL. Reconsider approach. trunk/extensions/launcher/launcher.cpp:151: [4] (shell) execv:
  This causes a new program to execute and is difficult to use safely.
  try using a library call that implements the same functionality if
available. trunk/gui/fb.cpp:117: [4] (format) fprintf:
  If format strings can be influenced by an attacker, they can be
exploited. Use a constant for the format specification. trunk/gui/fb.cpp:545: [4] (format) snprintf:
  If format strings can be influenced by an attacker, they can be
  exploited, and note that sprintf variations do not always \0-terminate. Use a
constant for the format specification. trunk/gui/fb.cpp:547: [4] (race) access:
  This usually indicates a security flaw.  If an attacker can change
  anything along the path between the call to access() and the file's actual
  use (e.g., by moving files), the attacker can exploit the race
  condition. Set up the correct permissions (e.g., using setuid()) and try to
open the file directly. trunk/libamf/lcshm.cpp:194: [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination.
Consider using strncpy or strlcpy (warning, strncpy is easily misused). trunk/libbase/curl_adapter.cpp:160: [4] (race) access:
  This usually indicates a security flaw.  If an attacker can change
  anything along the path between the call to access() and the file's actual
  use (e.g., by moving files), the attacker can exploit the race
  condition. Set up the correct permissions (e.g., using setuid()) and try to
open the file directly. trunk/libbase/curl_adapter.cpp:166: [4] (race) access:
  This usually indicates a security flaw.  If an attacker can change
  anything along the path between the call to access() and the file's actual
  use (e.g., by moving files), the attacker can exploit the race
  condition. Set up the correct permissions (e.g., using setuid()) and try to
open the file directly. trunk/libbase/curl_adapter.cpp:169: [4] (race) access:
  This usually indicates a security flaw.  If an attacker can change
  anything along the path between the call to access() and the file's actual
  use (e.g., by moving files), the attacker can exploit the race
  condition. Set up the correct permissions (e.g., using setuid()) and try to
open the file directly. trunk/libbase/curl_adapter.cpp:264: [4] (race) access:
  This usually indicates a security flaw.  If an attacker can change
  anything along the path between the call to access() and the file's actual
  use (e.g., by moving files), the attacker can exploit the race
  condition. Set up the correct permissions (e.g., using setuid()) and try to
open the file directly. trunk/libbase/curl_adapter.cpp:272: [4] (race) access:
  This usually indicates a security flaw.  If an attacker can change
  anything along the path between the call to access() and the file's actual
  use (e.g., by moving files), the attacker can exploit the race
  condition. Set up the correct permissions (e.g., using setuid()) and try to
open the file directly. trunk/libbase/jemalloc.c:201: [4] (format) vsnprintf:
  If format strings can be influenced by an attacker, they can be
  exploited, and note that sprintf variations do not always \0-terminate. Use a
constant for the format specification. trunk/libbase/jemalloc.c:1510: [4] (format) vsnprintf:
  If format strings can be influenced by an attacker, they can be
  exploited, and note that sprintf variations do not always \0-terminate. Use a
constant for the format specification. trunk/libcore/parser/abc_block.cpp:32: [4] (format) printf:
  If format strings can be influenced by an attacker, they can be
exploited. Use a constant for the format specification. trunk/libcore/vm/ASHandlers.cpp:2422: [4] (shell) system:
  This causes a new program to execute and is difficult to use safely.
  try using a library call that implements the same functionality if
available. trunk/libltdl/ltdl.c:281: [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination.
Consider using strncpy or strlcpy (warning, strncpy is easily misused). trunk/libltdl/ltdl.c:854: [4] (shell) system:
  This causes a new program to execute and is difficult to use safely.
  try using a library call that implements the same functionality if
available. trunk/libltdl/ltdl.c:1353: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. trunk/libltdl/ltdl.c:2521: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. trunk/libltdl/ltdl.c:2730: [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination.
Consider using strncpy or strlcpy (warning, strncpy is easily misused). trunk/libltdl/ltdl.c:2736: [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination.
Consider using strncpy or strlcpy (warning, strncpy is easily misused). trunk/libltdl/ltdl.c:2808: [4] (race) access:
  This usually indicates a security flaw.  If an attacker can change
  anything along the path between the call to access() and the file's actual
  use (e.g., by moving files), the attacker can exploit the race
  condition. Set up the correct permissions (e.g., using setuid()) and try to
open the file directly. trunk/libltdl/ltdl.c:2942: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. trunk/libltdl/ltdl.c:3521: [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination.
Consider using strncpy or strlcpy (warning, strncpy is easily misused). trunk/libltdl/ltdl.c:3522: [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination.
Consider using strncat or strlcat (warning, strncat is easily misused). trunk/libltdl/ltdl.c:3545: [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination.
Consider using strncpy or strlcpy (warning, strncpy is easily misused). trunk/libltdl/ltdl.c:3552: [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination.
Consider using strncat or strlcat (warning, strncat is easily misused). trunk/libltdl/ltdl.c:3681: [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination.
Consider using strncpy or strlcpy (warning, strncpy is easily misused). trunk/libltdl/ltdl.c:3934: [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination.
Consider using strncpy or strlcpy (warning, strncpy is easily misused). trunk/libltdl/ltdl.c:3935: [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination.
Consider using strncat or strlcat (warning, strncat is easily misused). trunk/libltdl/ltdl.c:3939: [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination.
Consider using strncpy or strlcpy (warning, strncpy is easily misused). trunk/libltdl/ltdl.c:3943: [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination.
Consider using strncat or strlcat (warning, strncat is easily misused). trunk/libltdl/ltdl.c:3961: [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination.
Consider using strncpy or strlcpy (warning, strncpy is easily misused). trunk/libltdl/ltdl.c:3962: [4] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination.
Consider using strncat or strlcat (warning, strncat is easily misused). trunk/libltdl/ltdl.c:3966: [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination.
Consider using strncpy or strlcpy (warning, strncpy is easily misused). trunk/plugin/mozilla-sdk/include/jni.h:1731: [4] (format) vfprintf:
  If format strings can be influenced by an attacker, they can be
exploited. Use a constant for the format specification. trunk/plugin/plugin.cpp:1006: [4] (shell) execv:
  This causes a new program to execute and is difficult to use safely.
  try using a library call that implements the same functionality if
available. trunk/plugin/win32/plugin.cpp:91: [4] (format) vsnprintf:
  If format strings can be influenced by an attacker, they can be
  exploited, and note that sprintf variations do not always \0-terminate. Use a
constant for the format specification. trunk/testsuite/check.h:30: [4] (format) printf:
  If format strings can be influenced by an attacker, they can be
exploited. Use a constant for the format specification. trunk/testsuite/misc-ming.all/ButtonEventsTest.c:80: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. trunk/testsuite/misc-ming.all/ButtonEventsTest.c:393: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. trunk/testsuite/misc-ming.all/DefineEditTextTest.c:119: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. trunk/testsuite/misc-ming.all/DefineEditTextVariableNameTest2.c:96: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. trunk/testsuite/misc-ming.all/DefineTextTest.c:56: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. trunk/testsuite/misc-ming.all/NetStream-SquareTest.c:65: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. trunk/testsuite/misc-ming.all/NetStream-SquareTest.c:66: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. trunk/testsuite/misc-ming.all/NetStream-SquareTest.c:100: [4] (format) sprintf: Potential format string problem. Make format string constant. trunk/testsuite/misc-ming.all/RollOverOutTest.c:57: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. trunk/testsuite/misc-ming.all/RollOverOutTest.c:133: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. trunk/testsuite/misc-ming.all/SpriteButtonEventsTest.c:63: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. trunk/testsuite/misc-ming.all/SpriteButtonEventsTest.c:194: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. trunk/testsuite/misc-ming.all/SpriteButtonEventsTest.c:230: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. trunk/testsuite/misc-ming.all/Video-EmbedSquareTest.c:67: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. trunk/testsuite/misc-ming.all/action_execution_order_test8.c:150: [4] (format) snprintf:
  If format strings can be influenced by an attacker, they can be
  exploited, and note that sprintf variations do not always \0-terminate. Use a
constant for the format specification. trunk/testsuite/misc-ming.all/loadImageTest.c:154: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. trunk/testsuite/misc-ming.all/loadImageTest.c:155: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. trunk/testsuite/misc-ming.all/loadImageTest.c:156: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. trunk/testsuite/misc-ming.all/loadImageTest.c:157: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. trunk/testsuite/misc-ming.all/loadImageTest.c:158: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. trunk/testsuite/misc-ming.all/loadImageTest.c:188: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. trunk/testsuite/misc-ming.all/loadImageTest.c:191: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. trunk/testsuite/misc-ming.all/loadImageTest.c:194: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. trunk/testsuite/misc-ming.all/loadImageTest.c:197: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. trunk/testsuite/misc-ming.all/loadImageTest.c:200: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. trunk/testsuite/misc-ming.all/loadMovieTest.c:131: [4] (format) snprintf:
  If format strings can be influenced by an attacker, they can be
  exploited, and note that sprintf variations do not always \0-terminate. Use a
constant for the format specification. trunk/testsuite/misc-ming.all/loadMovieTest.c:220: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. trunk/testsuite/misc-ming.all/loadMovieTest.c:221: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. trunk/testsuite/misc-ming.all/loadMovieTest.c:222: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. trunk/testsuite/misc-ming.all/loadMovieTest.c:229: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. trunk/testsuite/misc-ming.all/loadMovieTest.c:230: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. trunk/testsuite/misc-ming.all/loadMovieTest.c:231: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. trunk/testsuite/misc-ming.all/ming_utils.c:340: [4] (format) vsnprintf:
  If format strings can be influenced by an attacker, they can be
  exploited, and note that sprintf variations do not always \0-terminate. Use a
constant for the format specification. trunk/testsuite/misc-ming.all/ming_utils.c:367: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. trunk/testsuite/misc-ming.all/moviecliploader_test.c:71: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. trunk/testsuite/misc-ming.all/moviecliploader_test.c:112: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. trunk/testsuite/misc-ming.all/moviecliploader_test.c:113: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. trunk/testsuite/misc-ming.all/moviecliploader_test.c:114: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. trunk/testsuite/misc-ming.all/moviecliploader_test.c:120: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. trunk/testsuite/misc-ming.all/moviecliploader_test.c:121: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. trunk/testsuite/misc-ming.all/moviecliploader_test.c:122: [4] (buffer) sprintf: Does not check for buffer overflows. Use snprintf or vsnprintf. trunk/testsuite/misc-ming.all/opcode_guard_test.c:39: [4] (format) vprintf:
  If format strings can be influenced by an attacker, they can be
exploited. Use a constant for the format specification. trunk/cygnal/crc.cpp:85: [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker.  They can have any content and length, and the same variable
  can be set more than once. Check environment variables carefully before
using them. trunk/cygnal/crc.cpp:93: [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker.  They can have any content and length, and the same variable
  can be set more than once. Check environment variables carefully before
using them. trunk/cygnal/cygnal.cpp:44: [3] (buffer) getopt:
  Some older implementations do not protect against internal buffer
  overflows . Check implementation on installation, or limit the size of all
string inputs. trunk/extensions/launcher/launcher.cpp:65: [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker.  They can have any content and length, and the same variable
  can be set more than once. Check environment variables carefully before
using them. trunk/gui/aqua_ogl_glue.cpp:57: [3] (buffer) getopt:
  Some older implementations do not protect against internal buffer
  overflows . Check implementation on installation, or limit the size of all
string inputs. trunk/gui/dump.cpp:119: [3] (buffer) getopt:
  Some older implementations do not protect against internal buffer
  overflows . Check implementation on installation, or limit the size of all
string inputs. trunk/gui/fb.cpp:1019: [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker.  They can have any content and length, and the same variable
  can be set more than once. Check environment variables carefully before
using them. trunk/gui/fb.cpp:1072: [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker.  They can have any content and length, and the same variable
  can be set more than once. Check environment variables carefully before
using them. trunk/gui/fb.cpp:1152: [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker.  They can have any content and length, and the same variable
  can be set more than once. Check environment variables carefully before
using them. trunk/gui/fb.cpp:1173: [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker.  They can have any content and length, and the same variable
  can be set more than once. Check environment variables carefully before
using them. trunk/gui/fb.cpp:1238: [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker.  They can have any content and length, and the same variable
  can be set more than once. Check environment variables carefully before
using them. trunk/gui/gtk_glue_gtkglext.cpp:57: [3] (buffer) getopt:
  Some older implementations do not protect against internal buffer
  overflows . Check implementation on installation, or limit the size of all
string inputs. trunk/gui/kde_glue_opengl.cpp:44: [3] (buffer) getopt:
  Some older implementations do not protect against internal buffer
  overflows . Check implementation on installation, or limit the size of all
string inputs. trunk/gui/sdl.cpp:34: [3] (buffer) getopt:
  Some older implementations do not protect against internal buffer
  overflows . Check implementation on installation, or limit the size of all
string inputs. trunk/gui/sdl.cpp:160: [3] (buffer) getopt:
  Some older implementations do not protect against internal buffer
  overflows . Check implementation on installation, or limit the size of all
string inputs. trunk/gui/sdl_ogl_glue.cpp:55: [3] (buffer) getopt:
  Some older implementations do not protect against internal buffer
  overflows . Check implementation on installation, or limit the size of all
string inputs. trunk/libamf/amftest.cpp:78: [3] (buffer) getopt:
  Some older implementations do not protect against internal buffer
  overflows . Check implementation on installation, or limit the size of all
string inputs. trunk/libbase/GC.cpp:43: [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker.  They can have any content and length, and the same variable
  can be set more than once. Check environment variables carefully before
using them. trunk/libbase/curl_adapter.cpp:1071: [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker.  They can have any content and length, and the same variable
  can be set more than once. Check environment variables carefully before
using them. trunk/libbase/curl_adapter.cpp:1132: [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker.  They can have any content and length, and the same variable
  can be set more than once. Check environment variables carefully before
using them. trunk/libbase/extension.cpp:72: [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker.  They can have any content and length, and the same variable
  can be set more than once. Check environment variables carefully before
using them. trunk/libbase/getopt_win32.cpp:13: [3] (buffer) getopt:
  Some older implementations do not protect against internal buffer
  overflows . Check implementation on installation, or limit the size of all
string inputs. trunk/libbase/getopt_win32.h:14: [3] (buffer) getopt:
  Some older implementations do not protect against internal buffer
  overflows . Check implementation on installation, or limit the size of all
string inputs. trunk/libbase/jemalloc.c:1238: [3] (misc) EnterCriticalSection:
  On some versions of Windows, exceptions can be thrown in low-memory
situations. Use InitializeCriticalSectionAndSpinCount instead. trunk/libbase/jemalloc.c:1298: [3] (misc) EnterCriticalSection:
  On some versions of Windows, exceptions can be thrown in low-memory
situations. Use InitializeCriticalSectionAndSpinCount instead. trunk/libbase/rc.cpp:136: [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker.  They can have any content and length, and the same variable
  can be set more than once. Check environment variables carefully before
using them. trunk/libbase/rc.cpp:147: [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker.  They can have any content and length, and the same variable
  can be set more than once. Check environment variables carefully before
using them. trunk/libbase/rc.cpp:267: [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker.  They can have any content and length, and the same variable
  can be set more than once. Check environment variables carefully before
using them. trunk/libbase/rc.cpp:580: [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker.  They can have any content and length, and the same variable
  can be set more than once. Check environment variables carefully before
using them. trunk/libbase/rc.cpp:601: [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker.  They can have any content and length, and the same variable
  can be set more than once. Check environment variables carefully before
using them. trunk/libbase/sharedlib.cpp:79: [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker.  They can have any content and length, and the same variable
  can be set more than once. Check environment variables carefully before
using them. trunk/libcore/vm/VM.cpp:186: [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker.  They can have any content and length, and the same variable
  can be set more than once. Check environment variables carefully before
using them. trunk/libcore/vm/VM.cpp:187: [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker.  They can have any content and length, and the same variable
  can be set more than once. Check environment variables carefully before
using them. trunk/libcore/vm/VM.cpp:188: [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker.  They can have any content and length, and the same variable
  can be set more than once. Check environment variables carefully before
using them. trunk/libltdl/ltdl.c:1369: [3] (misc) LoadLibrary:
  Ensure that the full path to the library is specified, or current
  directory may be used. Use registry entry or GetWindowsDirectory to find
library path, if you aren't already. trunk/libltdl/ltdl.c:1372: [3] (misc) LoadLibrary:
  Ensure that the full path to the library is specified, or current
  directory may be used. Use registry entry or GetWindowsDirectory to find
library path, if you aren't already. trunk/libltdl/ltdl.c:3208: [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker.  They can have any content and length, and the same variable
  can be set more than once. Check environment variables carefully before
using them. trunk/libltdl/ltdl.c:3216: [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker.  They can have any content and length, and the same variable
  can be set more than once. Check environment variables carefully before
using them. trunk/libltdl/ltdl.c:3404: [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker.  They can have any content and length, and the same variable
  can be set more than once. Check environment variables carefully before
using them. trunk/libltdl/ltdl.c:3407: [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker.  They can have any content and length, and the same variable
  can be set more than once. Check environment variables carefully before
using them. trunk/libltdl/ltdl.c:3793: [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker.  They can have any content and length, and the same variable
  can be set more than once. Check environment variables carefully before
using them. trunk/libltdl/ltdl.c:3800: [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker.  They can have any content and length, and the same variable
  can be set more than once. Check environment variables carefully before
using them. trunk/libltdl/ltdl.c:3807: [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker.  They can have any content and length, and the same variable
  can be set more than once. Check environment variables carefully before
using them. trunk/libmedia/AudioDecoderNellymoser.cpp:56: [3] (random) random:
  This function is not sufficiently random for security-related
  functions such as key and nonce creation. use a more secure technique for
acquiring random values. trunk/libmedia/AudioDecoderNellymoser.cpp:57: [3] (random) srandom:
  This function is not sufficiently random for security-related
  functions such as key and nonce creation. use a more secure technique for
acquiring random values. trunk/libmedia/AudioDecoderNellymoser.cpp:57: [3] (random) srand:
  This function is not sufficiently random for security-related
  functions such as key and nonce creation. use a more secure technique for
acquiring random values. trunk/plugin/klash/klash_part.cpp:161: [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker.  They can have any content and length, and the same variable
  can be set more than once. Check environment variables carefully before
using them. trunk/plugin/mozilla-sdk/include/prwin16.h:93: [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker.  They can have any content and length, and the same variable
  can be set more than once. Check environment variables carefully before
using them. trunk/plugin/plugin.cpp:178: [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker.  They can have any content and length, and the same variable
  can be set more than once. Check environment variables carefully before
using them. trunk/plugin/plugin.cpp:197: [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker.  They can have any content and length, and the same variable
  can be set more than once. Check environment variables carefully before
using them. trunk/plugin/plugin.cpp:207: [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker.  They can have any content and length, and the same variable
  can be set more than once. Check environment variables carefully before
using them. trunk/plugin/plugin.cpp:749: [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker.  They can have any content and length, and the same variable
  can be set more than once. Check environment variables carefully before
using them. trunk/plugin/plugin.cpp:1070: [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker.  They can have any content and length, and the same variable
  can be set more than once. Check environment variables carefully before
using them. trunk/plugin/win32/plugin.cpp:401: [3] (buffer) getenv:
  Environment variables are untrustable input if they can be set by an
  attacker.  They can have any content and length, and the same variable
  can be set more than once. Check environment variables carefully before
using them. trunk/testsuite/libamf.all/test_lc.cpp:48: [3] (buffer) getopt:
  Some older implementations do not protect against internal buffer
  overflows . Check implementation on installation, or limit the size of all
string inputs. trunk/testsuite/libamf.all/test_lc.cpp:89: [3] (buffer) getopt:
  Some older implementations do not protect against internal buffer
  overflows . Check implementation on installation, or limit the size of all
string inputs. trunk/testsuite/libamf.all/test_number.cpp:35: [3] (buffer) getopt:
  Some older implementations do not protect against internal buffer
  overflows . Check implementation on installation, or limit the size of all
string inputs. trunk/testsuite/libamf.all/test_number.cpp:67: [3] (buffer) getopt:
  Some older implementations do not protect against internal buffer
  overflows . Check implementation on installation, or limit the size of all
string inputs. trunk/testsuite/libamf.all/test_object.cpp:31: [3] (buffer) getopt:
  Some older implementations do not protect against internal buffer
  overflows . Check implementation on installation, or limit the size of all
string inputs. trunk/testsuite/libamf.all/test_object.cpp:90: [3] (buffer) getopt:
  Some older implementations do not protect against internal buffer
  overflows . Check implementation on installation, or limit the size of all
string inputs. trunk/testsuite/libamf.all/test_string.cpp:32: [3] (buffer) getopt:
  Some older implementations do not protect against internal buffer
  overflows . Check implementation on installation, or limit the size of all
string inputs. trunk/testsuite/libamf.all/test_string.cpp:62: [3] (buffer) getopt:
  Some older implementations do not protect against internal buffer
  overflows . Check implementation on installation, or limit the size of all
string inputs. trunk/testsuite/libamf.all/test_variable.cpp:31: [3] (buffer) getopt:
  Some older implementations do not protect against internal buffer
  overflows . Check implementation on installation, or limit the size of all
string inputs. trunk/testsuite/libamf.all/test_variable.cpp:85: [3] (buffer) getopt:
  Some older implementations do not protect against internal buffer
  overflows . Check implementation on installation, or limit the size of all
string inputs. trunk/testsuite/libnet.all/test_http.cpp:32: [3] (buffer) getopt:
  Some older implementations do not protect against internal buffer
  overflows . Check implementation on installation, or limit the size of all
string inputs. trunk/testsuite/libnet.all/test_http.cpp:61: [3] (buffer) getopt:
  Some older implementations do not protect against internal buffer
  overflows . Check implementation on installation, or limit the size of all
string inputs. trunk/utilities/dumpshm.cpp:34: [3] (buffer) getopt:
  Some older implementations do not protect against internal buffer
  overflows . Check implementation on installation, or limit the size of all
string inputs. trunk/utilities/dumpshm.cpp:131: [3] (buffer) getopt:
  Some older implementations do not protect against internal buffer
  overflows . Check implementation on installation, or limit the size of all
string inputs. trunk/utilities/processor.cpp:65: [3] (buffer) getopt:
  Some older implementations do not protect against internal buffer
  overflows . Check implementation on installation, or limit the size of all
string inputs. trunk/utilities/processor.cpp:254: [3] (buffer) getopt:
  Some older implementations do not protect against internal buffer
  overflows . Check implementation on installation, or limit the size of all
string inputs. trunk/utilities/soldumper.cpp:38: [3] (buffer) getopt:
  Some older implementations do not protect against internal buffer
  overflows . Check implementation on installation, or limit the size of all
string inputs. trunk/utilities/soldumper.cpp:91: [3] (buffer) getopt:
  Some older implementations do not protect against internal buffer
  overflows . Check implementation on installation, or limit the size of all
string inputs. trunk/backend/render_handler_agg_bitmap.h:66: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/cygnal/crc.cpp:122: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/cygnal/crc.cpp:144: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/cygnal/cygnal.cpp:273: [2] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination.
  Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk
  is low because the source is a constant string.
trunk/cygnal/stream.cpp:61:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/cygnal/stream.cpp:66: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/cygnal/stream.cpp:150: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/cygnal/stream.cpp:153: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/cygnal/stream.cpp:157: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/cygnal/stream.cpp:163: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/cygnal/stream.cpp:167: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/cygnal/stream.cpp:180: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/cygnal/stream.h:46: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/cygnal/stream.h:47: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/cygnal/stream.h:48: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/extensions/fileio/fileio.cpp:232: [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/extensions/fileio/fileio.cpp:235: [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/extensions/fileio/fileio.cpp:250: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/extensions/fileio/fileio.cpp:275: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/extensions/fileio/fileio.cpp:386: [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/extensions/fileio/fileio.cpp:428: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/extensions/fileio/fileio.cpp:451: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/extensions/fileio/fileio.h:40: [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/extensions/launcher/launcher.cpp:113: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/extensions/launcher/launcher.cpp:121: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/extensions/launcher/md5.cpp:50: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/extensions/launcher/md5.cpp:101: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/extensions/launcher/md5.cpp:123: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/extensions/launcher/md5.cpp:177: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/extensions/launcher/md5.cpp:184: [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/extensions/launcher/md5.cpp:230: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/extensions/launcher/md5.cpp:231: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/extensions/launcher/md5.cpp:275: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/extensions/launcher/md5.cpp:284: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/extensions/launcher/md5.cpp:306: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/extensions/launcher/md5.cpp:324: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/extensions/launcher/md5.cpp:330: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/extensions/launcher/md5.h:50: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/extensions/mysql/mysql_table.cpp:64: [2] (integer) atoi:
  Unless checked, the resulting number can exceed the expected range.
  If source untrusted, check both minimum and maximum, even if the input
  had no minus sign (large numbers can roll over into negative number;
consider saving to an unsigned value if that is intended). trunk/extensions/mysql/mysql_table.cpp:117: [2] (integer) atoi:
  Unless checked, the resulting number can exceed the expected range.
  If source untrusted, check both minimum and maximum, even if the input
  had no minus sign (large numbers can roll over into negative number;
consider saving to an unsigned value if that is intended). trunk/gui/Player.cpp:623: [2] (integer) atoi:
  Unless checked, the resulting number can exceed the expected range.
  If source untrusted, check both minimum and maximum, even if the input
  had no minus sign (large numbers can roll over into negative number;
consider saving to an unsigned value if that is intended). trunk/gui/dump.cpp:265: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/gui/fb.cpp:133: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/gui/fb.cpp:136: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/gui/fb.cpp:259: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/gui/fb.cpp:423: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/gui/fb.cpp:543: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/gui/fb.cpp:575: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/gui/fb.cpp:610: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/gui/fb.cpp:641: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/gui/fb.cpp:691: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/gui/fb.cpp:754: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/gui/fb.cpp:788: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/gui/fb.cpp:795: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/gui/fb.cpp:918: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/gui/fb.cpp:925: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/gui/fb.cpp:1024: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/gui/fb.cpp:1079: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/gui/fb.cpp:1092: [2] (integer) atoi:
  Unless checked, the resulting number can exceed the expected range.
  If source untrusted, check both minimum and maximum, even if the input
  had no minus sign (large numbers can roll over into negative number;
consider saving to an unsigned value if that is intended). trunk/gui/fb.cpp:1099: [2] (integer) atoi:
  Unless checked, the resulting number can exceed the expected range.
  If source untrusted, check both minimum and maximum, even if the input
  had no minus sign (large numbers can roll over into negative number;
consider saving to an unsigned value if that is intended). trunk/gui/fb.cpp:1106: [2] (integer) atoi:
  Unless checked, the resulting number can exceed the expected range.
  If source untrusted, check both minimum and maximum, even if the input
  had no minus sign (large numbers can roll over into negative number;
consider saving to an unsigned value if that is intended). trunk/gui/fb.cpp:1110: [2] (integer) atoi:
  Unless checked, the resulting number can exceed the expected range.
  If source untrusted, check both minimum and maximum, even if the input
  had no minus sign (large numbers can roll over into negative number;
consider saving to an unsigned value if that is intended). trunk/gui/fb.cpp:1243: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/gui/fbsup.h:133: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/gui/gtk.cpp:1892: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/gui/gtk.cpp:1893: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/gui/gtk.cpp:1894: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/gui/riscos.cpp:288: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/gui/sdl.cpp:168: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/gui/sdl.cpp:169: [2] (buffer) sprintf:
  Does not check for buffer overflows. Use snprintf or vsnprintf. Risk
  is low because the source has a constant maximum length.
trunk/libamf/amftest.cpp:73:  [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libamf/amftest.cpp:143: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libamf/amftest.cpp:148: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/libamf/amftest.cpp:160: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libamf/amftest.cpp:221: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libamf/amftest.cpp:226: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/libamf/flv.cpp:50: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libamf/flv.cpp:92: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libamf/flv.cpp:293: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libamf/lcshm.cpp:157: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libamf/lcshm.cpp:166: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libamf/lcshm.cpp:171: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libamf/lcshm.cpp:317: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libamf/lcshm.cpp:389: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libamf/lcshm.cpp:393: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libamf/lcshm.cpp:507: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libamf/lcshm.cpp:514: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libamf/sol.cpp:256: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libamf/sol.cpp:263: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libamf/sol.cpp:271: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libamf/sol.cpp:279: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libamf/sol.cpp:283: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libamf/sol.cpp:290: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libbase/ClockTime.cpp:162: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libbase/ClockTime.cpp:178: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libbase/GC.cpp:46: [2] (integer) atoi:
  Unless checked, the resulting number can exceed the expected range.
  If source untrusted, check both minimum and maximum, even if the input
  had no minus sign (large numbers can roll over into negative number;
consider saving to an unsigned value if that is intended). trunk/libbase/GnashImagePng.cpp:121: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libbase/LoadThread.cpp:153: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libbase/LoadThread.cpp:201: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libbase/LoadThread.cpp:253: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libbase/URL.cpp:124: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libbase/curl_adapter.cpp:739: [2] (tmpfile) tmpfile:
  Function tmpfile() has a security flaw on some systems (e.g., older
System V systems). trunk/libbase/image.cpp:71: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libbase/image.cpp:79: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libbase/jemalloc.c:1506: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libbase/jemalloc.c:1957: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libbase/jemalloc.c:1978: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libbase/jemalloc.c:4304: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libbase/jemalloc.c:4631: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libbase/jemalloc.c:4695: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libbase/jemalloc.c:4703: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/libbase/jemalloc.c:4822: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libbase/jemalloc.c:4999: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libbase/jemalloc.c:5287: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libbase/jemalloc.c:6056: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libbase/log.cpp:86: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libbase/log.cpp:272: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/libbase/noseek_fd_adapter.cpp:129: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libbase/noseek_fd_adapter.cpp:264: [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/libbase/noseek_fd_adapter.cpp:272: [2] (tmpfile) tmpfile:
  Function tmpfile() has a security flaw on some systems (e.g., older
System V systems). trunk/libbase/ogl.h:16: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/libbase/rc.cpp:349: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/libbase/rc.cpp:626: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/libbase/shm.cpp:439: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libbase/shm.h:90: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libbase/zlib_adapter.cpp:100: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libbase/zlib_adapter.cpp:268: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libbase/zlib_adapter.cpp:299: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libcore/GnashKey.h:336: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libcore/SWFStream.cpp:269: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libcore/SWFStream.cpp:293: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libcore/SWFStream.cpp:313: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libcore/SWFStream.cpp:355: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libcore/SWFStream.cpp:386: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libcore/StreamProvider.cpp:87: [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/libcore/StreamProvider.cpp:129: [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/libcore/URLAccessManager.cpp:228: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libcore/asobj/NetStreamFfmpeg.cpp:318: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libcore/asobj/SoundFfmpeg.cpp:92: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libcore/asobj/SoundMad.cpp:149: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libcore/asobj/SoundMad.cpp:156: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libcore/asobj/SoundMad.cpp:163: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libcore/asobj/SoundMad.cpp:292: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libcore/asobj/SoundMad.cpp:299: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libcore/asobj/SoundMad.cpp:301: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libcore/debugger.cpp:332: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libcore/impl.cpp:289: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libcore/movie_root.cpp:2075: [2] (integer) atoi:
  Unless checked, the resulting number can exceed the expected range.
  If source untrusted, check both minimum and maximum, even if the input
  had no minus sign (large numbers can roll over into negative number;
consider saving to an unsigned value if that is intended). trunk/libcore/movie_root.cpp:2134: [2] (integer) atoi:
  Unless checked, the resulting number can exceed the expected range.
  If source untrusted, check both minimum and maximum, even if the input
  had no minus sign (large numbers can roll over into negative number;
consider saving to an unsigned value if that is intended). trunk/libcore/parser/SWFMovieDefinition.cpp:167: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libcore/parser/action_buffer.cpp:564: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libcore/parser/action_buffer.cpp:624: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libcore/parser/action_buffer.cpp:625: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libcore/parser/action_buffer.cpp:639: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libcore/vm/ActionExec.cpp:329: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libcore/vm/CodeStream.h:58: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libcore/vm/CodeStream.h:91: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libltdl/ltdl.c:170: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libltdl/ltdl.c:382: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libltdl/ltdl.c:382: [2] (buffer) bcopy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libltdl/ltdl.c:384: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libltdl/ltdl.c:386: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libltdl/ltdl.c:389: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libltdl/ltdl.c:462: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libltdl/ltdl.c:478: [2] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination.
  Consider using strncat or strlcat (warning, strncat is easily misused).
  Risk is low because the source is a constant string.
trunk/libltdl/ltdl.c:560:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libltdl/ltdl.c:603: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libltdl/ltdl.c:722: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libltdl/ltdl.c:1328: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libltdl/ltdl.c:1367: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libltdl/ltdl.c:1903: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libltdl/ltdl.c:2773: [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/libltdl/ltdl.c:3230: [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/libltdl/ltdl.c:3890: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libltdl/ltdl.c:3942: [2] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination.
  Consider using strncat or strlcat (warning, strncat is easily misused).
  Risk is low because the source is a constant string.
trunk/libmedia/AudioDecoderNellymoser.cpp:227:  [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libmedia/AudioDecoderNellymoser.cpp:631: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libmedia/AudioDecoderNellymoser.cpp:631: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libmedia/AudioDecoderNellymoser.cpp:660: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libmedia/AudioDecoderSimple.cpp:266: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libmedia/AudioDecoderSimple.cpp:339: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libmedia/AudioDecoderSimple.cpp:361: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libmedia/MediaHandler.cpp:35: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libmedia/Util.cpp:84: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libmedia/ffmpeg/sound_handler_sdl.cpp:55: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libmedia/ffmpeg/sound_handler_sdl.cpp:57: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libmedia/ffmpeg/sound_handler_sdl.cpp:58: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libmedia/ffmpeg/sound_handler_sdl.cpp:71: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libmedia/ffmpeg/sound_handler_sdl.cpp:102: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/libmedia/ffmpeg/sound_handler_sdl.cpp:726: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libmedia/ffmpeg/sound_handler_sdl.cpp:733: [2] (buffer) sprintf:
  Does not check for buffer overflows. Use snprintf or vsnprintf. Risk
  is low because the source has a constant maximum length.
trunk/libmedia/ffmpeg/sound_handler_sdl.cpp:736:  [2] (buffer) sprintf:
  Does not check for buffer overflows. Use snprintf or vsnprintf. Risk
  is low because the source has a constant maximum length.
trunk/libmedia/ffmpeg/sound_handler_sdl.cpp:739:  [2] (buffer) sprintf:
  Does not check for buffer overflows. Use snprintf or vsnprintf. Risk
  is low because the source has a constant maximum length.
trunk/libmedia/ffmpeg/sound_handler_sdl.cpp:755:  [2] (buffer) sprintf:
  Does not check for buffer overflows. Use snprintf or vsnprintf. Risk
  is low because the source has a constant maximum length.
trunk/libmedia/gst/gstflvdemux.c:604:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libmedia/gst/gstflvdemux.c:635: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libmedia/gst/gstflvdemux.c:706: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libmedia/gst/gstflvdemux.c:763: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libmedia/gst/gstflvparse.c:60: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libmedia/gst/gstflvparse.c:672: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libmedia/gst/gstflvparse.c:944: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libnet/cqueue.cpp:53: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libnet/cqueue.cpp:62: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libnet/http.cpp:1277: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/libnet/network.cpp:339: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libnet/network.cpp:470: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libnet/network.cpp:496: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libnet/network.cpp:502: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/libnet/rtmp.cpp:389: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/libnet/rtmp.cpp:402: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/plugin/plugin.cpp:532: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/plugin/plugin.cpp:536: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/plugin/plugin.cpp:798: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/plugin/plugin.cpp:832: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/plugin/win32/npgnash.c:29: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/plugin/win32/npgnash.c:33: [2] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination.
  Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk
  is low because the source is a constant string.
trunk/plugin/win32/npgnash.c:36:  [2] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination.
  Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk
  is low because the source is a constant string.
trunk/plugin/win32/npgnash.c:39:  [2] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination.
  Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk
  is low because the source is a constant string.
trunk/plugin/win32/npgnash.c:42:  [2] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination.
  Consider using strncpy or strlcpy (warning, strncpy is easily misused). Risk
  is low because the source is a constant string.
trunk/plugin/win32/plugin.cpp:87:  [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/libamf.all/test_buffer.cpp:257: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/testsuite/libamf.all/test_buffer.cpp:324: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/testsuite/libamf.all/test_buffer.cpp:325: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/testsuite/libamf.all/test_buffer.cpp:341: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/testsuite/libamf.all/test_buffer.cpp:357: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/testsuite/libamf.all/test_buffer.cpp:358: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/testsuite/libamf.all/test_buffer.cpp:394: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/testsuite/libamf.all/test_buffer.cpp:395: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/testsuite/libamf.all/test_buffer.cpp:420: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/testsuite/libamf.all/test_buffer.cpp:421: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/testsuite/libamf.all/test_lc.cpp:272: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/testsuite/libamf.all/test_lc.cpp:276: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/testsuite/libamf.all/test_lc.cpp:309: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/testsuite/libamf.all/test_lc.cpp:313: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/testsuite/libamf.all/test_number.cpp:95: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/libamf.all/test_number.cpp:99: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/testsuite/libamf.all/test_object.cpp:82: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/libamf.all/test_object.cpp:114: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/libamf.all/test_object.cpp:124: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/testsuite/libamf.all/test_string.cpp:57: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/libamf.all/test_string.cpp:93: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/testsuite/libamf.all/test_variable.cpp:80: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/libamf.all/test_variable.cpp:109: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/libamf.all/test_variable.cpp:117: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/testsuite/libamf.all/test_variable.cpp:175: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/testsuite/libbase/CurlStreamTest.cpp:51: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/libbase/CurlStreamTest.cpp:69: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/libbase/CurlStreamTest.cpp:86: [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/testsuite/libbase/CurlStreamTest.cpp:89: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/libbase/NoSeekFileTest.cpp:62: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/libbase/NoSeekFileTest.cpp:63: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/libbase/NoSeekFileTest.cpp:133: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/testsuite/libbase/NoSeekFileTest.cpp:134: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/testsuite/libbase/NoSeekFileTest.cpp:148: [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/testsuite/libcore.all/BitsReaderTest.cpp:70: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/testsuite/libcore.all/StreamTest.cpp:77: [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination. Make
sure destination can always hold the source data. trunk/testsuite/misc-ming.all/ButtonEventsTest.c:78: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/ButtonEventsTest.c:392: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/DefineEditTextTest.c:103: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/DefineEditTextTest.c:150: [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/testsuite/misc-ming.all/DefineEditTextVariableNameTest.c:72: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/DefineEditTextVariableNameTest.c:87: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/DefineEditTextVariableNameTest.c:103: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/DefineEditTextVariableNameTest.c:119: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/DefineEditTextVariableNameTest.c:158: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/DefineEditTextVariableNameTest2.c:81: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/DefineTextTest.c:40: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/DefineTextTest.c:82: [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/testsuite/misc-ming.all/NetStream-SquareTest.c:39: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/NetStream-SquareTest.c:40: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/NetStream-SquareTest.c:52: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/NetStream-SquareTest.c:53: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/NetStream-SquareTest.c:81: [2] (buffer) sprintf:
  Does not check for buffer overflows. Use snprintf or vsnprintf. Risk
  is low because the source has a constant maximum length.
trunk/testsuite/misc-ming.all/RollOverOutTest.c:55:  [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/RollOverOutTest.c:105: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/RollOverOutTest.c:134: [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/testsuite/misc-ming.all/SpriteButtonEventsTest.c:61: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/SpriteButtonEventsTest.c:193: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/SpriteButtonEventsTest.c:204: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/SpriteButtonEventsTest.c:231: [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/testsuite/misc-ming.all/Video-EmbedSquareTest.c:57: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/Video-EmbedSquareTest.c:68: [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/testsuite/misc-ming.all/XMLSocketTest.c:38: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/action_execution_order_test8.c:69: [2] (integer) atoi:
  Unless checked, the resulting number can exceed the expected range.
  If source untrusted, check both minimum and maximum, even if the input
  had no minus sign (large numbers can roll over into negative number;
consider saving to an unsigned value if that is intended). trunk/testsuite/misc-ming.all/action_execution_order_test8.c:149: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/definebitsjpeg2.c:74: [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/testsuite/misc-ming.all/eventSoundTest1.c:53: [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/testsuite/misc-ming.all/loadImageTest.c:128: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/loadImageTest.c:129: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/loadImageTest.c:130: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/loadImageTest.c:131: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/loadImageTest.c:132: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/loadImageTest.c:134: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/loadImageTest.c:135: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/loadImageTest.c:136: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/loadImageTest.c:137: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/loadImageTest.c:138: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/loadMovieTest.c:64: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/loadMovieTest.c:68: [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/testsuite/misc-ming.all/loadMovieTest.c:108: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/loadMovieTest.c:200: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/loadMovieTest.c:201: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/loadMovieTest.c:202: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/loadMovieTest.c:203: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/loadMovieTest.c:204: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/loadMovieTest.c:205: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/ming_utils.c:337: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/ming_utils.c:365: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/ming_utils.c:369: [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/testsuite/misc-ming.all/moviecliploader_test.c:52: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/moviecliploader_test.c:56: [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/testsuite/misc-ming.all/moviecliploader_test.c:86: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/moviecliploader_test.c:87: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/moviecliploader_test.c:88: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/moviecliploader_test.c:89: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/moviecliploader_test.c:90: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/moviecliploader_test.c:91: [2] (buffer) char:
  Statically-sized arrays can be overflowed. Perform bounds checking,
  use functions that limit length, or ensure that the size is larger than
the maximum possible length. trunk/testsuite/misc-ming.all/streamingSoundTest1.c:56: [2] (misc) fopen:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/utilities/dumpshm.cpp:244: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/utilities/processor.cpp:293: [2] (integer) atoi:
  Unless checked, the resulting number can exceed the expected range.
  If source untrusted, check both minimum and maximum, even if the input
  had no minus sign (large numbers can roll over into negative number;
consider saving to an unsigned value if that is intended). trunk/utilities/rtmpget.cpp:450: [2] (misc) open:
  Check when opening files - can an attacker redirect it (via symlinks),
  force the opening of special file type (e.g., device files), move
  things around to create a race condition, control its ancestors, or change
its contents?. trunk/extensions/fileio/fileio.cpp:261: [1] (buffer) fgetc: Check buffer boundaries if used in a loop. trunk/extensions/fileio/fileio.cpp:265: [1] (buffer) fgetc: Check buffer boundaries if used in a loop. trunk/extensions/fileio/fileio.cpp:422: [1] (buffer) fgetc: Check buffer boundaries if used in a loop. trunk/extensions/fileio/fileio.cpp:464: [1] (buffer) getchar: Check buffer boundaries if used in a loop. trunk/extensions/fileio/fileio.h:43: [1] (buffer) fgetc: Check buffer boundaries if used in a loop. trunk/extensions/launcher/launcher.cpp:114: [1] (port) snprintf:
  On some very old systems, snprintf is incorrectly implemented and
  permits buffer overflows; there are also incompatible standard definitions
of it. Check it during installation, or use something else. trunk/extensions/launcher/launcher.cpp:115: [1] (port) snprintf:
  On some very old systems, snprintf is incorrectly implemented and
  permits buffer overflows; there are also incompatible standard definitions
of it. Check it during installation, or use something else. trunk/extensions/launcher/launcher.cpp:116: [1] (port) snprintf:
  On some very old systems, snprintf is incorrectly implemented and
  permits buffer overflows; there are also incompatible standard definitions
of it. Check it during installation, or use something else. trunk/extensions/mysql/mysql_db.cpp:216: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/extensions/mysql/mysql_db.cpp:243: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/gui/NullGui.cpp:27: [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command
  by the same name).   The interaction of this function with SIGALRM and
  other timer functions such as sleep(), alarm(), setitimer(), and
nanosleep() is unspecified. Use nanosleep(2) or setitimer(2) instead. trunk/gui/NullGui.cpp:57: [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command
  by the same name).   The interaction of this function with SIGALRM and
  other timer functions such as sleep(), alarm(), setitimer(), and
nanosleep() is unspecified. Use nanosleep(2) or setitimer(2) instead. trunk/gui/dump.cpp:192: [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command
  by the same name).   The interaction of this function with SIGALRM and
  other timer functions such as sleep(), alarm(), setitimer(), and
nanosleep() is unspecified. Use nanosleep(2) or setitimer(2) instead. trunk/gui/fb.cpp:138: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/gui/fb.cpp:380: [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command
  by the same name).   The interaction of this function with SIGALRM and
  other timer functions such as sleep(), alarm(), setitimer(), and
nanosleep() is unspecified. Use nanosleep(2) or setitimer(2) instead. trunk/gui/fb.cpp:732: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/gui/fb.cpp:756: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/gui/fb.cpp:766: [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command
  by the same name).   The interaction of this function with SIGALRM and
  other timer functions such as sleep(), alarm(), setitimer(), and
nanosleep() is unspecified. Use nanosleep(2) or setitimer(2) instead. trunk/gui/fb.cpp:769: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/gui/fb.cpp:805: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/gui/fb.cpp:935: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/gui/fb.cpp:1084: [1] (port) snprintf:
  On some very old systems, snprintf is incorrectly implemented and
  permits buffer overflows; there are also incompatible standard definitions
of it. Check it during installation, or use something else. trunk/gui/fb.cpp:1162: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/gui/fb.cpp:1393: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libamf/amftest.cpp:149: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libamf/amftest.cpp:227: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libamf/amftest.cpp:240: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/libamf/amftest.cpp:270: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/libamf/buffer.cpp:57: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/libamf/element.cpp:880: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/libamf/lcshm.cpp:134: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/libamf/lcshm.cpp:149: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/libamf/lcshm.cpp:193: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/libamf/lcshm.cpp:195: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/libamf/lcshm.cpp:201: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/libamf/lcshm.cpp:221: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/libamf/sol.cpp:346: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libbase/GnashImage.h:70: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libbase/GnashImageGif.cpp:50: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libbase/GnashImageGif.cpp:106: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libbase/GnashImageGif.h:70: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libbase/GnashImageGif.h:94: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libbase/GnashImageJpeg.cpp:111: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libbase/GnashImageJpeg.h:87: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libbase/GnashImageJpeg.h:128: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libbase/GnashImagePng.cpp:60: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libbase/GnashImagePng.cpp:145: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libbase/GnashImagePng.h:69: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libbase/GnashImagePng.h:87: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libbase/IOChannel.cpp:131: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libbase/IOChannel.h:107: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libbase/IOChannel.h:122: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libbase/LoadThread.cpp:25: [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command
  by the same name).   The interaction of this function with SIGALRM and
  other timer functions such as sleep(), alarm(), setitimer(), and
nanosleep() is unspecified. Use nanosleep(2) or setitimer(2) instead. trunk/libbase/LoadThread.cpp:124: [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command
  by the same name).   The interaction of this function with SIGALRM and
  other timer functions such as sleep(), alarm(), setitimer(), and
nanosleep() is unspecified. Use nanosleep(2) or setitimer(2) instead. trunk/libbase/LoadThread.cpp:148: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libbase/LoadThread.cpp:170: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libbase/LoadThread.cpp:199: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libbase/LoadThread.cpp:241: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libbase/LoadThread.cpp:304: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libbase/LoadThread.cpp:332: [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command
  by the same name).   The interaction of this function with SIGALRM and
  other timer functions such as sleep(), alarm(), setitimer(), and
nanosleep() is unspecified. Use nanosleep(2) or setitimer(2) instead. trunk/libbase/LoadThread.cpp:354: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libbase/LoadThread.cpp:377: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libbase/LoadThread.h:79: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libbase/URL.cpp:131: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/libbase/arg_parser.cpp:39: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/libbase/curl_adapter.cpp:371: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libbase/curl_adapter.cpp:903: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libbase/extension.cpp:48: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/libbase/jemalloc.c:1488: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/libbase/jemalloc.c:1489: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/libbase/jemalloc.c:1490: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/libbase/jemalloc.c:1491: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/libbase/jemalloc.c:4713: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libbase/jemalloc.c:5664: [1] (free) memalign:
  On some systems (though not Linux-based systems) an attempt to free()
  results from memalign() may fail. This may, on a few systems, be
  exploitable.  Also note that memalign() may not check that the boundary
  parameter is correct. Use posix_memalign instead (defined in POSIX's
  1003.1d).  Don't switch to valloc(); it is marked as obsolete in BSD 4.3, as
  legacy in SUSv2, and is no longer defined in SUSv3.  In some cases,
malloc()'s alignment may be sufficient. trunk/libbase/jemalloc.c:5691: [1] (free) memalign:
  On some systems (though not Linux-based systems) an attempt to free()
  results from memalign() may fail. This may, on a few systems, be
  exploitable.  Also note that memalign() may not check that the boundary
  parameter is correct. Use posix_memalign instead (defined in POSIX's
  1003.1d).  Don't switch to valloc(); it is marked as obsolete in BSD 4.3, as
  legacy in SUSv2, and is no longer defined in SUSv3.  In some cases,
malloc()'s alignment may be sufficient. trunk/libbase/noseek_fd_adapter.cpp:85: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libbase/noseek_fd_adapter.cpp:224: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libbase/noseek_fd_adapter.cpp:300: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libbase/shm.cpp:169: [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for
invalid pointers. trunk/libbase/shm.cpp:531: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/libbase/shm.cpp:592: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/libbase/tu_file.cpp:33: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libbase/tu_file.h:118: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libbase/tu_file.h:176: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libbase/tu_file.h:183: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libbase/tu_file.h:190: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libbase/tu_file.h:197: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libbase/zlib_adapter.cpp:69: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libbase/zlib_adapter.cpp:190: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/BevelFilter.h:40: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/BitmapFilter.h:35: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/BlurFilter.h:33: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/ColorMatrixFilter.h:32: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/ConvolutionFilter.h:34: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/DropShadowFilter.h:33: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/GlowFilter.h:33: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/GradientBevelFilter.h:41: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/GradientGlowFilter.h:42: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/LoadVariablesThread.cpp:57: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/SWFStream.cpp:65: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/SWFStream.cpp:82: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/SWFStream.cpp:134: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/SWFStream.cpp:135: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/SWFStream.cpp:296: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/SWFStream.cpp:316: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/SWFStream.cpp:358: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/SWFStream.cpp:389: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/SWFStream.h:150: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/as_value.cpp:2081: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/libcore/as_value.cpp:2085: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/libcore/asobj/LoadVars.cpp:247: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/asobj/NetConnection.cpp:280: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/asobj/NetConnection.cpp:281: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/asobj/NetConnection.cpp:281: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/asobj/NetConnection.cpp:282: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/asobj/SoundMad.cpp:42: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/asobj/XMLSocket_as.cpp:200: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/asobj/XMLSocket_as.cpp:212: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/libcore/asobj/XMLSocket_as.cpp:215: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/libcore/asobj/XMLSocket_as.cpp:225: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/libcore/asobj/XMLSocket_as.cpp:231: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/libcore/asobj/xml.cpp:455: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/fill_style.cpp:40: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/fill_style.cpp:44: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/fill_style.cpp:63: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/fill_style.cpp:109: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/fill_style.cpp:135: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/fill_style.cpp:206: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/fill_style.cpp:208: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/fill_style.cpp:286: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/fill_style.cpp:295: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/fill_style.h:50: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/fill_style.h:130: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/font.cpp:132: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/font.cpp:209: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/font.cpp:315: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/font.cpp:352: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/font.h:182: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/impl.cpp:291: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/impl.cpp:335: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/matrix.cpp:49: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/matrix.h:134: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/SWFMovieDefinition.cpp:73: [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command
  by the same name).   The interaction of this function with SIGALRM and
  other timer functions such as sleep(), alarm(), setitimer(), and
nanosleep() is unspecified. Use nanosleep(2) or setitimer(2) instead. trunk/libcore/parser/SWFMovieDefinition.cpp:172: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/SWFMovieDefinition.cpp:392: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/SWFMovieDefinition.cpp:483: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/SWFMovieDefinition.cpp:845: [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command
  by the same name).   The interaction of this function with SIGALRM and
  other timer functions such as sleep(), alarm(), setitimer(), and
nanosleep() is unspecified. Use nanosleep(2) or setitimer(2) instead. trunk/libcore/parser/SWFMovieDefinition.h:352: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/abc_block.cpp:163: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/abc_block.cpp:903: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/abc_block.cpp:939: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/abc_block.cpp:980: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/abc_block.cpp:1022: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/abc_block.cpp:1091: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/abc_block.cpp:1100: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/abc_block.h:81: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/abc_block.h:178: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/action_buffer.cpp:61: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/action_buffer.cpp:93: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/action_buffer.h:65: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/button_character_def.cpp:69: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/button_character_def.cpp:116: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/button_character_def.cpp:188: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/button_character_def.cpp:198: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/button_character_def.cpp:241: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/button_character_def.cpp:315: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/button_character_def.cpp:392: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/button_character_def.cpp:481: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/button_character_def.cpp:488: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/button_character_def.h:100: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/button_character_def.h:182: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/button_character_def.h:252: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/edit_text_character_def.cpp:38: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/edit_text_character_def.cpp:44: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/edit_text_character_def.h:64: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/filter_factory.cpp:48: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/filter_factory.cpp:106: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/filter_factory.cpp:119: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/filter_factory.cpp:148: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/filter_factory.cpp:167: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/filter_factory.cpp:193: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/filter_factory.cpp:231: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/filter_factory.cpp:278: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/filter_factory.cpp:313: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/filter_factory.cpp:338: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/filter_factory.h:42: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/morph2_character_def.cpp:197: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/morph2_character_def.cpp:207: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/morph2_character_def.cpp:208: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/morph2_character_def.cpp:214: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/morph2_character_def.cpp:215: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/morph2_character_def.cpp:232: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/morph2_character_def.cpp:246: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/morph2_character_def.cpp:248: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/morph2_character_def.h:46: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/shape_character_def.cpp:76: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/shape_character_def.cpp:106: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/shape_character_def.cpp:134: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/shape_character_def.cpp:139: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/shape_character_def.cpp:150: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/shape_character_def.h:80: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/sprite_definition.cpp:70: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/sprite_definition.cpp:196: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/sprite_definition.h:250: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/text_character_def.cpp:17: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/text_character_def.cpp:22: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/text_character_def.cpp:23: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/text_character_def.cpp:150: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/text_character_def.h:52: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/parser/video_stream_def.cpp:105: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/rect.cpp:29: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/rect.h:68: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/styles.cpp:50: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/styles.cpp:51: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/styles.cpp:82: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/styles.cpp:88: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/styles.cpp:89: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/styles.cpp:94: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/styles.cpp:100: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/styles.cpp:130: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/styles.cpp:135: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/styles.h:87: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/swf/DoActionTag.h:50: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/swf/DoActionTag.h:52: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/swf/DoActionTag.h:69: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/swf/DoInitActionTag.h:48: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/swf/DoInitActionTag.h:86: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/swf/DoInitActionTag.h:88: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/swf/PlaceObject2Tag.cpp:56: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/swf/PlaceObject2Tag.cpp:166: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/swf/PlaceObject2Tag.cpp:265: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/swf/PlaceObject2Tag.cpp:364: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/swf/PlaceObject2Tag.cpp:413: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/swf/PlaceObject2Tag.cpp:480: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/swf/PlaceObject2Tag.cpp:549: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/swf/PlaceObject2Tag.h:112: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/swf/RemoveObjectTag.cpp:31: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/swf/RemoveObjectTag.cpp:62: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/swf/RemoveObjectTag.h:59: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/swf/SetBackgroundColorTag.h:59: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/swf/SetBackgroundColorTag.h:82: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/swf/StartSoundTag.cpp:60: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/swf/StartSoundTag.cpp:72: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/swf/StartSoundTag.h:92: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/swf/StreamSoundBlockTag.cpp:100: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/swf/tag_loaders.cpp:103: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/swf/tag_loaders.cpp:112: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/swf/tag_loaders.cpp:413: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/swf/tag_loaders.cpp:781: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/swf/tag_loaders.cpp:800: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/swf/tag_loaders.cpp:820: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/swf/tag_loaders.cpp:950: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/swf/tag_loaders.cpp:967: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/swf/tag_loaders.cpp:1134: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/swf/tag_loaders.cpp:1152: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/swf/tag_loaders.cpp:1248: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/text.cpp:74: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/text.h:209: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/types.cpp:23: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/types.h:87: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libcore/vm/ASHandlers.cpp:592: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/libcore/vm/ASHandlers.cpp:2003: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/libcore/vm/ASHandlers.cpp:3835: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/libcore/vm/ASHandlers.cpp:3931: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/libcore/vm/ASHandlers.cpp:4058: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/libcore/vm/ActionExec.cpp:330: [1] (port) snprintf:
  On some very old systems, snprintf is incorrectly implemented and
  permits buffer overflows; there are also incompatible standard definitions
of it. Check it during installation, or use something else. trunk/libltdl/ltdl.c:100: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/libltdl/ltdl.c:103: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/libltdl/ltdl.c:278: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/libltdl/ltdl.c:467: [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for
invalid pointers. trunk/libltdl/ltdl.c:469: [1] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination.
  Consider using strncat or strlcat (warning, strncat is easily misused).
  Risk is low because the source is a constant character.
trunk/libltdl/ltdl.c:507:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for
invalid pointers. trunk/libltdl/ltdl.c:510: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/libltdl/ltdl.c:1681: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/libltdl/ltdl.c:1934: [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for
invalid pointers. trunk/libltdl/ltdl.c:3047: [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for
invalid pointers. trunk/libltdl/ltdl.c:3139: [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for
invalid pointers. trunk/libltdl/ltdl.c:3682: [1] (buffer) strcat:
  Does not check for buffer overflows when concatenating to destination.
  Consider using strncat or strlcat (warning, strncat is easily misused).
  Risk is low because the source is a constant character.
trunk/libltdl/ltdl.c:3683:  [1] (buffer) strncat:
  Easily used incorrectly (e.g., incorrectly computing the correct
maximum size to add). Consider strlcat or automatically resizing strings. trunk/libltdl/ltdl.c:4040: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/libltdl/ltdl.h:89: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/libmedia/FLVParser.cpp:165: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libmedia/FLVParser.cpp:265: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libmedia/FLVParser.cpp:397: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libmedia/FLVParser.cpp:460: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libmedia/FLVParser.cpp:489: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libmedia/FLVParser.cpp:550: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libmedia/FLVParser.cpp:573: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libmedia/MediaHandler.cpp:37: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libmedia/MediaParser.cpp:29: [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command
  by the same name).   The interaction of this function with SIGALRM and
  other timer functions such as sleep(), alarm(), setitimer(), and
nanosleep() is unspecified. Use nanosleep(2) or setitimer(2) instead. trunk/libmedia/MediaParser.cpp:358: [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command
  by the same name).   The interaction of this function with SIGALRM and
  other timer functions such as sleep(), alarm(), setitimer(), and
nanosleep() is unspecified. Use nanosleep(2) or setitimer(2) instead. trunk/libmedia/ffmpeg/MediaParserFfmpeg.cpp:71: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libmedia/ffmpeg/MediaParserFfmpeg.cpp:441: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libmedia/gst/gstflvparse.c:94: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/libmedia/gst/gstflvparse.c:181: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/libmedia/gst/gstflvparse.c:212: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libmedia/gst/gstflvparse.c:217: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libmedia/gst/gstflvparse.c:355: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/libmedia/gst/gstflvparse.c:368: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libmedia/gst/gstflvparse.c:372: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libnet/http.cpp:1282: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/libnet/lirc.cpp:128: [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for
invalid pointers. trunk/libnet/network.cpp:358: [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for
invalid pointers. trunk/libnet/network.cpp:788: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/plugin/mozilla-sdk/include/npruntime.h:202: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/plugin/plugin.cpp:799: [1] (port) snprintf:
  On some very old systems, snprintf is incorrectly implemented and
  permits buffer overflows; there are also incompatible standard definitions
of it. Check it during installation, or use something else. trunk/plugin/plugin.cpp:800: [1] (port) snprintf:
  On some very old systems, snprintf is incorrectly implemented and
  permits buffer overflows; there are also incompatible standard definitions
of it. Check it during installation, or use something else. trunk/plugin/plugin.cpp:801: [1] (port) snprintf:
  On some very old systems, snprintf is incorrectly implemented and
  permits buffer overflows; there are also incompatible standard definitions
of it. Check it during installation, or use something else. trunk/plugin/plugin.cpp:802: [1] (port) snprintf:
  On some very old systems, snprintf is incorrectly implemented and
  permits buffer overflows; there are also incompatible standard definitions
of it. Check it during installation, or use something else. trunk/testsuite/libamf.all/test_amf.cpp:97: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/testsuite/libamf.all/test_flv.cpp:92: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/testsuite/libamf.all/test_number.cpp:100: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/testsuite/libamf.all/test_object.cpp:125: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/testsuite/libamf.all/test_object.cpp:165: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/testsuite/libamf.all/test_object.cpp:328: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/testsuite/libamf.all/test_object.cpp:353: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/testsuite/libamf.all/test_object.cpp:363: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/testsuite/libamf.all/test_object.cpp:373: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/testsuite/libamf.all/test_object.cpp:383: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/testsuite/libamf.all/test_object.cpp:393: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/testsuite/libamf.all/test_sol.cpp:96: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/testsuite/libamf.all/test_string.cpp:94: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/testsuite/libamf.all/test_string.cpp:99: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/testsuite/libamf.all/test_string.cpp:107: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/testsuite/libamf.all/test_variable.cpp:123: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/testsuite/libamf.all/test_variable.cpp:176: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/testsuite/libbase/CurlStreamTest.cpp:53: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/testsuite/libbase/CurlStreamTest.cpp:55: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/testsuite/libbase/CurlStreamTest.cpp:71: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/testsuite/libbase/CurlStreamTest.cpp:73: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/testsuite/libbase/CurlStreamTest.cpp:93: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/testsuite/libbase/NoSeekFileTest.cpp:72: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/testsuite/libbase/NoSeekFileTest.cpp:73: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/testsuite/libcore.all/BitsReaderTest.cpp:65: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/testsuite/libcore.all/BitsReaderTest.cpp:84: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/testsuite/libcore.all/BitsReaderTest.cpp:233: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/testsuite/libcore.all/StreamTest.cpp:71: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/testsuite/libnet.all/test_rtmp.cpp:102: [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated (it could cause a
crash if unprotected). trunk/testsuite/misc-ming.all/DefineEditTextVariableNameTest.c:75: [1] (port) snprintf:
  On some very old systems, snprintf is incorrectly implemented and
  permits buffer overflows; there are also incompatible standard definitions
of it. Check it during installation, or use something else. trunk/testsuite/misc-ming.all/DefineEditTextVariableNameTest.c:90: [1] (port) snprintf:
  On some very old systems, snprintf is incorrectly implemented and
  permits buffer overflows; there are also incompatible standard definitions
of it. Check it during installation, or use something else. trunk/testsuite/misc-ming.all/DefineEditTextVariableNameTest.c:105: [1] (port) snprintf:
  On some very old systems, snprintf is incorrectly implemented and
  permits buffer overflows; there are also incompatible standard definitions
of it. Check it during installation, or use something else. trunk/testsuite/misc-ming.all/DefineEditTextVariableNameTest.c:121: [1] (port) snprintf:
  On some very old systems, snprintf is incorrectly implemented and
  permits buffer overflows; there are also incompatible standard definitions
of it. Check it during installation, or use something else. trunk/testsuite/misc-ming.all/DefineEditTextVariableNameTest.c:175: [1] (port) snprintf:
  On some very old systems, snprintf is incorrectly implemented and
  permits buffer overflows; there are also incompatible standard definitions
of it. Check it during installation, or use something else. trunk/testsuite/misc-ming.all/DragDropTestRunner.cpp:120: [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command
  by the same name).   The interaction of this function with SIGALRM and
  other timer functions such as sleep(), alarm(), setitimer(), and
nanosleep() is unspecified. Use nanosleep(2) or setitimer(2) instead. trunk/testsuite/misc-ming.all/XMLSocketTest.c:126: [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for
  invalid pointers. Risk is low because the source is a constant string.
trunk/testsuite/misc-ming.all/loadMovieTest.c:88:  [1] (port) snprintf:
  On some very old systems, snprintf is incorrectly implemented and
  permits buffer overflows; there are also incompatible standard definitions
of it. Check it during installation, or use something else. trunk/testsuite/misc-ming.all/loadMovieTestRunner.cpp:120: [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command
  by the same name).   The interaction of this function with SIGALRM and
  other timer functions such as sleep(), alarm(), setitimer(), and
nanosleep() is unspecified. Use nanosleep(2) or setitimer(2) instead. trunk/testsuite/misc-ming.all/loadMovieTestRunner.cpp:139: [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command
  by the same name).   The interaction of this function with SIGALRM and
  other timer functions such as sleep(), alarm(), setitimer(), and
nanosleep() is unspecified. Use nanosleep(2) or setitimer(2) instead. trunk/testsuite/misc-ming.all/loadMovieTestRunner.cpp:158: [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command
  by the same name).   The interaction of this function with SIGALRM and
  other timer functions such as sleep(), alarm(), setitimer(), and
nanosleep() is unspecified. Use nanosleep(2) or setitimer(2) instead. trunk/utilities/flvdumper.cpp:186: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/utilities/flvdumper.cpp:209: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/utilities/flvdumper.cpp:215: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/utilities/flvdumper.cpp:229: [1] (buffer) read: Check buffer boundaries if used in a loop. trunk/utilities/processor.cpp:57: [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command
  by the same name).   The interaction of this function with SIGALRM and
  other timer functions such as sleep(), alarm(), setitimer(), and
nanosleep() is unspecified. Use nanosleep(2) or setitimer(2) instead. trunk/utilities/processor.cpp:443: [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command
  by the same name).   The interaction of this function with SIGALRM and
  other timer functions such as sleep(), alarm(), setitimer(), and
nanosleep() is unspecified. Use nanosleep(2) or setitimer(2) instead. trunk/utilities/processor.cpp:546: [1] (obsolete) usleep:
  This C routine is considered obsolete (as opposed to the shell command
  by the same name).   The interaction of this function with SIGALRM and
  other timer functions such as sleep(), alarm(), setitimer(), and
  nanosleep() is unspecified. Use nanosleep(2) or setitimer(2) instead.

Hits = 831
Lines analyzed = 236161 in 11.72 seconds (21045 lines/second)
Physical Source Lines of Code (SLOC) = 142493
address@hidden = [0]   0 [1] 356 [2] 321 [3]  72 [4]  80 [5]   2
address@hidden = [0+] 831 [1+] 831 [2+] 475 [3+] 154 [4+]  82 [5+]   2
Hits/address@hidden = [0+] 5.83187 [1+] 5.83187 [2+] 3.3335 [3+] 1.08075 [4+] 
0.575467 [5+] 0.0140358
Dot directories skipped = 1 (--followdotdir overrides)
Minimum risk level = 1
Not every hit is necessarily a security vulnerability.
There may be other security vulnerabilities; review your code!




reply via email to

[Prev in Thread] Current Thread [Next in Thread]