Flawfinder version 2.0.10, (C) 2001-2019 David A. Wheeler.
Number of rules (primarily dangerous function names) in C/C++ ruleset: 223
Examining data/jsusfx-0.4.0/max/jsusfx_max.cpp
Examining data/jsusfx-0.4.0/pd/jsusfx_pd.cpp
Examining data/jsusfx-0.4.0/src/WDL/assocarray.h
Examining data/jsusfx-0.4.0/src/WDL/denormal.h
Examining data/jsusfx-0.4.0/src/WDL/eel2/asm-nseel-arm-gcc.c
Examining data/jsusfx-0.4.0/src/WDL/eel2/asm-nseel-ppc-gcc.c
Examining data/jsusfx-0.4.0/src/WDL/eel2/asm-nseel-x86-gcc.c
Examining data/jsusfx-0.4.0/src/WDL/eel2/asm-nseel-x86-msvc.c
Examining data/jsusfx-0.4.0/src/WDL/eel2/eel_atomic.h
Examining data/jsusfx-0.4.0/src/WDL/eel2/eel_eval.h
Examining data/jsusfx-0.4.0/src/WDL/eel2/eel_fft.h
Examining data/jsusfx-0.4.0/src/WDL/eel2/eel_files.h
Examining data/jsusfx-0.4.0/src/WDL/eel2/eel_lice.h
Examining data/jsusfx-0.4.0/src/WDL/eel2/eel_mdct.h
Examining data/jsusfx-0.4.0/src/WDL/eel2/eel_misc.h
Examining data/jsusfx-0.4.0/src/WDL/eel2/eel_net.h
Examining data/jsusfx-0.4.0/src/WDL/eel2/eel_strings.h
Examining data/jsusfx-0.4.0/src/WDL/eel2/eelscript.h
Examining data/jsusfx-0.4.0/src/WDL/eel2/glue_arm.h
Examining data/jsusfx-0.4.0/src/WDL/eel2/glue_port.h
Examining data/jsusfx-0.4.0/src/WDL/eel2/glue_ppc.h
Examining data/jsusfx-0.4.0/src/WDL/eel2/glue_x86.h
Examining data/jsusfx-0.4.0/src/WDL/eel2/glue_x86_64.h
Examining data/jsusfx-0.4.0/src/WDL/eel2/loose_eel.cpp
Examining data/jsusfx-0.4.0/src/WDL/eel2/ns-eel-addfuncs.h
Examining data/jsusfx-0.4.0/src/WDL/eel2/ns-eel-func-ref.h
Examining data/jsusfx-0.4.0/src/WDL/eel2/ns-eel-int.h
Examining data/jsusfx-0.4.0/src/WDL/eel2/ns-eel.h
Examining data/jsusfx-0.4.0/src/WDL/eel2/nseel-caltab.c
Examining data/jsusfx-0.4.0/src/WDL/eel2/nseel-cfunc.c
Examining data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c
Examining data/jsusfx-0.4.0/src/WDL/eel2/nseel-eval.c
Examining data/jsusfx-0.4.0/src/WDL/eel2/nseel-lextab.c
Examining data/jsusfx-0.4.0/src/WDL/eel2/nseel-ram.c
Examining data/jsusfx-0.4.0/src/WDL/eel2/nseel-yylex.c
Examining data/jsusfx-0.4.0/src/WDL/eel2/y.tab.c
Examining data/jsusfx-0.4.0/src/WDL/eel2/y.tab.h
Examining data/jsusfx-0.4.0/src/WDL/fft.c
Examining data/jsusfx-0.4.0/src/WDL/fft.h
Examining data/jsusfx-0.4.0/src/WDL/heapbuf.h
Examining data/jsusfx-0.4.0/src/WDL/mutex.h
Examining data/jsusfx-0.4.0/src/WDL/ptrlist.h
Examining data/jsusfx-0.4.0/src/WDL/wdlatomic.h
Examining data/jsusfx-0.4.0/src/WDL/wdlcstring.h
Examining data/jsusfx-0.4.0/src/WDL/wdlstring.h
Examining data/jsusfx-0.4.0/src/WDL/wdltypes.h
Examining data/jsusfx-0.4.0/src/jsusfx.cpp
Examining data/jsusfx-0.4.0/src/jsusfx.h
Examining data/jsusfx-0.4.0/src/jsusfx_file.cpp
Examining data/jsusfx-0.4.0/src/jsusfx_file.h
Examining data/jsusfx-0.4.0/src/jsusfx_gfx.cpp
Examining data/jsusfx-0.4.0/src/jsusfx_gfx.h
Examining data/jsusfx-0.4.0/src/jsusfx_serialize.cpp
Examining data/jsusfx-0.4.0/src/jsusfx_serialize.h
Examining data/jsusfx-0.4.0/src/riff.cpp
Examining data/jsusfx-0.4.0/src/riff.h
Examining data/jsusfx-0.4.0/test/jsusfx_test.cpp

FINAL RESULTS:

data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:1720:13:  [5] (buffer) lstrcatn:
  Easily used incorrectly (e.g., incorrectly computing the correct maximum
  size to add) [MS-banned] (CWE-120). Consider strcat_s, strlcat, or
  automatically resizing strings. Risk is high; the length parameter appears
  to be a constant, instead of computing the number of characters left.
            lstrcatn(nm,":",sizeof(nm));
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:1723:13:  [5] (buffer) lstrcatn:
  Easily used incorrectly (e.g., incorrectly computing the correct maximum
  size to add) [MS-banned] (CWE-120). Consider strcat_s, strlcat, or
  automatically resizing strings. Risk is high; the length parameter appears
  to be a constant, instead of computing the number of characters left.
            lstrcatn(nm,rn,sizeof(nm));
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:4756:25:  [5] (buffer) lstrcatn:
  Easily used incorrectly (e.g., incorrectly computing the correct maximum
  size to add) [MS-banned] (CWE-120). Consider strcat_s, strlcat, or
  automatically resizing strings. Risk is high; the length parameter appears
  to be a constant, instead of computing the number of characters left.
        if (cur_err[0]) lstrcatn(cur_err,": ",sizeof(cur_err));
data/jsusfx-0.4.0/max/jsusfx_max.cpp:36:9:  [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 (CWE-134). Use
  a constant for the format specification.
        vsnprintf(output, 4095, fmt, argptr);
data/jsusfx-0.4.0/max/jsusfx_max.cpp:46:9:  [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 (CWE-134). Use
  a constant for the format specification.
        vsnprintf(output, 4095, fmt, argptr);
data/jsusfx-0.4.0/max/jsusfx_max.cpp:120:9:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
        strcpy(filename, atom_getsym(argv)->s_name);
data/jsusfx-0.4.0/max/jsusfx_max.cpp:180:5:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
    strcpy(filename, s->s_name);
data/jsusfx-0.4.0/max/jsusfx_max.cpp:215:5:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
    strcpy(x->scriptname, filename);
data/jsusfx-0.4.0/pd/jsusfx_pd.cpp:172:9:  [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 (CWE-134). Use
  a constant for the format specification.
        vsnprintf(output, 4095, fmt, argptr);
data/jsusfx-0.4.0/pd/jsusfx_pd.cpp:182:9:  [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 (CWE-134). Use
  a constant for the format specification.
        vsnprintf(output, 4095, fmt, argptr);
data/jsusfx-0.4.0/src/WDL/eel2/eel_strings.h:456:11:  [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 (CWE-134). Use
  a constant for the format specification.
          snprintf(op,maxl,fs,str ? str : "");
data/jsusfx-0.4.0/src/WDL/eel2/eel_strings.h:469:11:  [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 (CWE-134). Use
  a constant for the format specification.
          snprintf(op,64,fs,(int) (v));
data/jsusfx-0.4.0/src/WDL/eel2/eel_strings.h:492:11:  [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 (CWE-134). Use
  a constant for the format specification.
          snprintf(op,64,fs,v);
data/jsusfx-0.4.0/src/WDL/eel2/loose_eel.cpp:13:3:  [4] (format) vfprintf:
  If format strings can be influenced by an attacker, they can be exploited
  (CWE-134). Use a constant for the format specification.
  vfprintf(stderr,fmt,arglist);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:5341:7:  [4] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused).
      strcpy(p->name,gv);
data/jsusfx-0.4.0/src/WDL/eel2/y.tab.c:792:21:  [4] (format) fprintf:
  If format strings can be influenced by an attacker, they can be exploited
  (CWE-134). Use a constant for the format specification.
#  define YYFPRINTF fprintf
data/jsusfx-0.4.0/src/WDL/wdlcstring.h:49:10:  [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 (CWE-134). Use
  a constant for the format specification.
  #ifdef snprintf
data/jsusfx-0.4.0/src/WDL/wdlcstring.h:50:10:  [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 (CWE-134). Use
  a constant for the format specification.
  #undef snprintf
data/jsusfx-0.4.0/src/WDL/wdlcstring.h:52:11:  [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 (CWE-134). Use
  a constant for the format specification.
  #define snprintf WDL_snprintf
data/jsusfx-0.4.0/src/WDL/wdlcstring.h:54:10:  [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 (CWE-134). Use
  a constant for the format specification.
  #ifdef vsnprintf
data/jsusfx-0.4.0/src/WDL/wdlcstring.h:55:10:  [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 (CWE-134). Use
  a constant for the format specification.
  #undef vsnprintf
data/jsusfx-0.4.0/src/WDL/wdlcstring.h:57:11:  [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 (CWE-134). Use
  a constant for the format specification.
  #define vsnprintf WDL_vsnprintf
data/jsusfx-0.4.0/src/WDL/wdlcstring.h:77:24:  [4] (format) printf:
  If format strings can be influenced by an attacker, they can be exploited
  (CWE-134). Use a constant for the format specification.
  void WDL_VARARG_WARN(printf,3,4) snprintf_append(char *o, INT_PTR count, const char *format, ...);
data/jsusfx-0.4.0/src/WDL/wdlcstring.h:90:26:  [4] (format) printf:
  If format strings can be influenced by an attacker, they can be exploited
  (CWE-134). Use a constant for the format specification.
    void WDL_VARARG_WARN(printf,3,4) WDL_snprintf(char *o, size_t count, const char *format, ...);
data/jsusfx-0.4.0/src/WDL/wdlcstring.h:109:46:  [4] (format) printf:
  If format strings can be influenced by an attacker, they can be exploited
  (CWE-134). Use a constant for the format specification.
    _WDL_CSTRING_PREFIX void WDL_VARARG_WARN(printf,3,4) WDL_snprintf(char *o, size_t count, const char *format, ...)
data/jsusfx-0.4.0/src/WDL/wdlcstring.h:221:44:  [4] (format) printf:
  If format strings can be influenced by an attacker, they can be exploited
  (CWE-134). Use a constant for the format specification.
  _WDL_CSTRING_PREFIX void WDL_VARARG_WARN(printf,3,4) snprintf_append(char *o, INT_PTR count, const char *format, ...)
data/jsusfx-0.4.0/src/WDL/wdlcstring.h:228:7:  [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 (CWE-134). Use
  a constant for the format specification.
      vsnprintf(o,count,format,va);
data/jsusfx-0.4.0/src/WDL/wdlcstring.h:238:7:  [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 (CWE-134). Use
  a constant for the format specification.
      vsnprintf(o,count,format,va);
data/jsusfx-0.4.0/src/WDL/wdlstring.h:64:26:  [4] (format) printf:
  If format strings can be influenced by an attacker, they can be exploited
  (CWE-134). Use a constant for the format specification.
    void WDL_VARARG_WARN(printf,3,4) SetFormatted(int maxlen, const char *fmt, ...);
data/jsusfx-0.4.0/src/WDL/wdlstring.h:65:26:  [4] (format) printf:
  If format strings can be influenced by an attacker, they can be exploited
  (CWE-134). Use a constant for the format specification.
    void WDL_VARARG_WARN(printf,3,4) AppendFormatted(int maxlen, const char *fmt, ...);
data/jsusfx-0.4.0/src/WDL/wdlstring.h:235:23:  [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 (CWE-134). Use
  a constant for the format specification.
        int written = vsnprintf(b, maxlen+1, fmt, arglist);
data/jsusfx-0.4.0/src/WDL/wdlstring.h:242:26:  [4] (format) printf:
  If format strings can be influenced by an attacker, they can be exploited
  (CWE-134). Use a constant for the format specification.
    void WDL_VARARG_WARN(printf,3,4) WDL_STRING_FUNCPREFIX SetFormatted(int maxlen, const char *fmt, ...) 
data/jsusfx-0.4.0/src/WDL/wdlstring.h:250:26:  [4] (format) printf:
  If format strings can be influenced by an attacker, they can be exploited
  (CWE-134). Use a constant for the format specification.
    void WDL_VARARG_WARN(printf,3,4) WDL_STRING_FUNCPREFIX AppendFormatted(int maxlen, const char *fmt, ...) 
data/jsusfx-0.4.0/test/jsusfx_test.cpp:83:9:  [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 (CWE-134). Use
  a constant for the format specification.
        vsnprintf(output, 4095, fmt, argptr);
data/jsusfx-0.4.0/test/jsusfx_test.cpp:94:9:  [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 (CWE-134). Use
  a constant for the format specification.
        vsnprintf(output, 4095, fmt, argptr);
data/jsusfx-0.4.0/src/WDL/eel2/eel_lice.h:1726:24:  [3] (misc) LoadLibrary:
  Ensure that the full path to the library is specified, or current directory
  may be used (CWE-829, CWE-20). Use registry entry or GetWindowsDirectory to
  find library path, if you aren't already.
         HINSTANCE h = LoadLibrary("user32.dll");
data/jsusfx-0.4.0/src/WDL/mutex.h:71:7:  [3] (misc) InitializeCriticalSection:
  Exceptions can be thrown in low-memory situations. Use
  InitializeCriticalSectionAndSpinCount instead.
      InitializeCriticalSection(&m_cs);
data/jsusfx-0.4.0/src/WDL/mutex.h:108:7:  [3] (misc) EnterCriticalSection:
  On some versions of Windows, exceptions can be thrown in low-memory
  situations. Use InitializeCriticalSectionAndSpinCount instead.
      EnterCriticalSection(&m_cs);
data/jsusfx-0.4.0/max/jsusfx_max.cpp:33:9:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
        char output[4096];
data/jsusfx-0.4.0/max/jsusfx_max.cpp:43:9:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
        char output[4096];
data/jsusfx-0.4.0/max/jsusfx_max.cpp:64:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char scriptname[MAX_PATH_CHARS];
data/jsusfx-0.4.0/max/jsusfx_max.cpp:119:9:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
        char filename[MAX_PATH_CHARS];
data/jsusfx-0.4.0/max/jsusfx_max.cpp:135:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char fullpath[1024];
data/jsusfx-0.4.0/max/jsusfx_max.cpp:178:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char filename[MAX_PATH_CHARS];
data/jsusfx-0.4.0/max/jsusfx_max.cpp:218:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char fullpath[MAX_PATH_CHARS];
data/jsusfx-0.4.0/max/jsusfx_max.cpp:306:21:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
            case 0: sprintf(s,"(signal) Left Input");   break;
data/jsusfx-0.4.0/max/jsusfx_max.cpp:307:21:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
            case 1: sprintf(s,"(signal) Right Input");  break;
data/jsusfx-0.4.0/max/jsusfx_max.cpp:311:21:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
            case 0: sprintf(s,"(signal) Left Output");  break;
data/jsusfx-0.4.0/max/jsusfx_max.cpp:312:21:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
            case 1: sprintf(s,"(signal) Right Output"); break;
data/jsusfx-0.4.0/max/jsusfx_max.cpp:313:21:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
            case 2: sprintf(s,"jsfx info"); break;
data/jsusfx-0.4.0/pd/jsusfx_pd.cpp:66:9:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
        char result[1024];
data/jsusfx-0.4.0/pd/jsusfx_pd.cpp:80:9:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
        char result[1024];
data/jsusfx-0.4.0/pd/jsusfx_pd.cpp:169:9:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
        char output[4096];
data/jsusfx-0.4.0/pd/jsusfx_pd.cpp:179:9:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
        char output[4096];
data/jsusfx-0.4.0/pd/jsusfx_pd.cpp:219:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char scriptpath[1024];
data/jsusfx-0.4.0/pd/jsusfx_pd.cpp:558:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char dirbuf[MAXPDSTRING];
data/jsusfx-0.4.0/src/WDL/eel2/eel_fft.h:34:3:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
  char flag[1<<EEL_FFT_MAXBITLEN];
data/jsusfx-0.4.0/src/WDL/eel2/eel_fft.h:233:7:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
      memcpy(tmp,data,sizeof(EEL_F)*flen*2);
data/jsusfx-0.4.0/src/WDL/eel2/eel_files.h:92:3:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
  char buf[16384];
data/jsusfx-0.4.0/src/WDL/eel2/eel_files.h:203:7:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
      char buf[16384];
data/jsusfx-0.4.0/src/WDL/eel2/eel_lice.h:216:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char last_fontname[128];
data/jsusfx-0.4.0/src/WDL/eel2/eel_lice.h:217:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char actual_fontname[128];
data/jsusfx-0.4.0/src/WDL/eel2/eel_lice.h:306:3:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
  char m_cursor_name[128];
data/jsusfx-0.4.0/src/WDL/eel2/eel_lice.h:1493:3:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
  char buf[1024];
data/jsusfx-0.4.0/src/WDL/eel2/eel_lice.h:1594:3:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
  char buf[4096];
data/jsusfx-0.4.0/src/WDL/eel2/eel_lice.h:1666:3:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
  char buf[32];
data/jsusfx-0.4.0/src/WDL/eel2/eel_lice.h:1684:3:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
  char buf[512];
data/jsusfx-0.4.0/src/WDL/eel2/eel_lice.h:2331:9:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
        char title[512], buf[1024];
data/jsusfx-0.4.0/src/WDL/eel2/eel_lice.h:2333:24:  [2] (buffer) strcpy:
  Does not check for buffer overflows when copying to destination [MS-banned]
  (CWE-120). Consider using snprintf, strcpy_s, or strlcpy (warning: strncpy
  easily misused). Risk is low because the source is a constant string.
        if (!title[0]) strcpy(title, "ReaScript");
data/jsusfx-0.4.0/src/WDL/eel2/eel_net.h:477:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char buf[EEL_STRING_MAXUSERSTRING_LENGTH_HINT];
data/jsusfx-0.4.0/src/WDL/eel2/eel_net.h:503:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char buf[EEL_NET_MAXSEND];
data/jsusfx-0.4.0/src/WDL/eel2/eel_net.h:517:18:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
      if (l > 0) memcpy(buf,fn,l);
data/jsusfx-0.4.0/src/WDL/eel2/eel_strings.h:413:7:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
      char fs[128];
data/jsusfx-0.4.0/src/WDL/eel2/eel_strings.h:414:7:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
      char varname[128];
data/jsusfx-0.4.0/src/WDL/eel2/eel_strings.h:450:11:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
          memcpy(op,wr->Get(),wl);
data/jsusfx-0.4.0/src/WDL/eel2/eel_strings.h:611:15:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
              char tmp[128];
data/jsusfx-0.4.0/src/WDL/eel2/eel_strings.h:701:15:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
              char tmp[128];
data/jsusfx-0.4.0/src/WDL/eel2/eel_strings.h:742:17:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
                char tmp[128];
data/jsusfx-0.4.0/src/WDL/eel2/eel_strings.h:798:9:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
        char buf[16384];
data/jsusfx-0.4.0/src/WDL/eel2/eel_strings.h:1096:45:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
      if (l>=0 && l < wl) return ((unsigned char *)fmt)[l];
data/jsusfx-0.4.0/src/WDL/eel2/eel_strings.h:1135:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char buf[8];
data/jsusfx-0.4.0/src/WDL/eel2/eel_strings.h:1169:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(dest,a.buf,type_sz);
data/jsusfx-0.4.0/src/WDL/eel2/eel_strings.h:1178:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char buf[8];
data/jsusfx-0.4.0/src/WDL/eel2/eel_strings.h:1198:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(a.buf,src,type_sz);
data/jsusfx-0.4.0/src/WDL/eel2/eel_strings.h:1277:13:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
            char buf[32];
data/jsusfx-0.4.0/src/WDL/eel2/eel_strings.h:1479:7:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
      char buf[16384];
data/jsusfx-0.4.0/src/WDL/eel2/eelscript.h:97:18:  [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? (CWE-362).
      FILE *fp = fopen(fnstr.Get(),mode);
data/jsusfx-0.4.0/src/WDL/eel2/eelscript.h:465:18:  [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? (CWE-362).
      FILE *fp = fopen(usefn.Get(),"r");
data/jsusfx-0.4.0/src/WDL/eel2/eelscript.h:493:10:  [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? (CWE-362).
    fp = fopen(fn,"r");
data/jsusfx-0.4.0/src/WDL/eel2/eelscript.h:523:3:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
  char line[4096];
data/jsusfx-0.4.0/src/WDL/eel2/glue_arm.h:67:12:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
  if (out) memcpy(out,&GLUE_SET_WTP_FROM_R8,sizeof(GLUE_SET_WTP_FROM_R8));
data/jsusfx-0.4.0/src/WDL/eel2/glue_arm.h:225:3:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
  memcpy(buf + GLUE_SET_PX_FROM_WTP_SIZE,GLUE_POP_FPSTACK_TO_WTP,sizeof(GLUE_POP_FPSTACK_TO_WTP));
data/jsusfx-0.4.0/src/WDL/eel2/glue_port.h:216:12:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
  if (out) memcpy(out,&GLUE__RESET_WTP,sizeof(GLUE__RESET_WTP));
data/jsusfx-0.4.0/src/WDL/eel2/glue_port.h:339:3:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
  memcpy(buf + GLUE_SET_PX_FROM_WTP_SIZE,GLUE_POP_FPSTACK_TO_WTP,sizeof(GLUE_POP_FPSTACK_TO_WTP));
data/jsusfx-0.4.0/src/WDL/eel2/glue_port.h:342:17:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
static unsigned char GLUE_POP_STACK_TO_FPSTACK[1] = { 0 }; // todo
data/jsusfx-0.4.0/src/WDL/eel2/glue_port.h:544:3:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
  char __stack[EEL_BC_STACKSIZE];
data/jsusfx-0.4.0/src/WDL/eel2/glue_ppc.h:61:12:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
  if (out) memcpy(out,&GLUE_SET_WTP_FROM_R17,sizeof(GLUE_SET_WTP_FROM_R17));
data/jsusfx-0.4.0/src/WDL/eel2/glue_ppc.h:229:3:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
  memcpy(buf,GLUE_POP_FPSTACK_TO_WTP,sizeof(GLUE_POP_FPSTACK_TO_WTP));
data/jsusfx-0.4.0/src/WDL/eel2/glue_ppc.h:243:25:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
  static const unsigned char sig[12] = { 0x7c, 0x00, 0x03, 0x78, 0x7c, 0x21, 0x0b, 0x78, 0x7c, 0x42, 0x13, 0x78 };
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86.h:80:29:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
      const static unsigned char t[2] = {0xDD, 0x05};
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86.h:81:7:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
      memcpy(b,t,2);
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86.h:86:29:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
      const static unsigned char tab[3] = {
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86.h:96:25:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
  const static unsigned char  GLUE_PUSH_P1[4]={0x83, 0xEC, 12,   0x50}; // sub esp, 12, push eax
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86.h:101:16:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    ((unsigned char *)b)[0] = 0x89; // mov [esp+offs], eax
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86.h:102:16:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    ((unsigned char *)b)[1] = 0x84;
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86.h:103:16:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    ((unsigned char *)b)[2] = 0x24;
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86.h:110:27:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    static const unsigned char tab[3][GLUE_MOVE_PX_STACKPTR_SIZE]=
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86.h:116:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(b,tab[wv],GLUE_MOVE_PX_STACKPTR_SIZE);
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86.h:122:16:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    ((unsigned char *)b)[0] = 0x81;
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86.h:125:18:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
      ((unsigned char *)b)[1] = 0xEC;
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86.h:130:18:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
      ((unsigned char *)b)[1] = 0xc4;
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86.h:139:27:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    static const unsigned char tab[3][GLUE_POP_PX_SIZE]=
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86.h:145:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(b,tab[wv],GLUE_POP_PX_SIZE);
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86.h:151:27:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    static const unsigned char tab[3][GLUE_SET_PX_FROM_P1_SIZE]={
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86.h:156:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(b,tab[wv],GLUE_SET_PX_FROM_P1_SIZE);
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86.h:160:25:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
  static const unsigned char GLUE_POP_FPSTACK[2] = { 0xDD, 0xD8 }; // fstp st0
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86.h:180:27:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    static const unsigned char tab[3][GLUE_SET_PX_FROM_WTP_SIZE]={
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86.h:185:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(b,tab[wv],GLUE_SET_PX_FROM_WTP_SIZE);
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86.h:191:27:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    static const unsigned char tab[3][GLUE_PUSH_VAL_AT_PX_TO_FPSTACK_SIZE]={
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86.h:196:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(b,tab[wv],GLUE_PUSH_VAL_AT_PX_TO_FPSTACK_SIZE);
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86.h:203:3:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
  memcpy(buf + GLUE_SET_PX_FROM_WTP_SIZE,GLUE_POP_FPSTACK_TO_WTP,sizeof(GLUE_POP_FPSTACK_TO_WTP));
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86.h:214:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(out,&ptr,sizeof(void *));
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86.h:405:25:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
  static const unsigned char sig[12] = { 0x89, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86_64.h:36:25:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
  const static unsigned char  GLUE_PUSH_P1[2]={	   0x50,0x50}; // push rax (pointer); push rax (alignment)
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86_64.h:41:16:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    ((unsigned char *)b)[0] = 0x48; // mov [rsp+offs], rax
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86_64.h:42:16:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    ((unsigned char *)b)[1] = 0x89; 
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86_64.h:43:16:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    ((unsigned char *)b)[2] = 0x84;
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86_64.h:44:16:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    ((unsigned char *)b)[3] = 0x24;
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86_64.h:51:27:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    static const unsigned char tab[3][GLUE_MOVE_PX_STACKPTR_SIZE]=
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86_64.h:57:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(b,tab[wv],GLUE_MOVE_PX_STACKPTR_SIZE);
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86_64.h:63:16:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    ((unsigned char *)b)[0] = 0x48;
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86_64.h:64:16:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    ((unsigned char *)b)[1] = 0x81;
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86_64.h:67:18:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
      ((unsigned char *)b)[2] = 0xEC;
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86_64.h:72:18:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
      ((unsigned char *)b)[2] = 0xc4;
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86_64.h:80:27:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    static const unsigned char tab[3][GLUE_POP_PX_SIZE]=
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86_64.h:86:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(b,tab[wv],GLUE_POP_PX_SIZE);
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86_64.h:134:27:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    static const unsigned char tab[3][GLUE_SET_PX_FROM_P1_SIZE]={
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86_64.h:139:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(b,tab[wv],GLUE_SET_PX_FROM_P1_SIZE);
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86_64.h:144:25:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
  static const unsigned char GLUE_POP_FPSTACK[2] = { 0xDD, 0xD8 }; // fstp st0
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86_64.h:159:27:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    static const unsigned char tab[3][GLUE_SET_PX_FROM_WTP_SIZE]={
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86_64.h:164:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(b,tab[wv],GLUE_SET_PX_FROM_WTP_SIZE);
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86_64.h:170:27:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    static const unsigned char tab[3][GLUE_PUSH_VAL_AT_PX_TO_FPSTACK_SIZE]={
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86_64.h:175:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(b,tab[wv],GLUE_PUSH_VAL_AT_PX_TO_FPSTACK_SIZE);
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86_64.h:187:3:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
  memcpy(buf + GLUE_SET_PX_FROM_WTP_SIZE,GLUE_POP_FPSTACK_TO_WTP,sizeof(GLUE_POP_FPSTACK_TO_WTP));
data/jsusfx-0.4.0/src/WDL/eel2/glue_x86_64.h:318:25:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
  static const unsigned char sig[12] = { 0x89, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
data/jsusfx-0.4.0/src/WDL/eel2/loose_eel.cpp:100:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char line[4096];
data/jsusfx-0.4.0/src/WDL/eel2/ns-eel-int.h:135:3:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
  char fname[NSEEL_MAX_FUNCSIG_NAME+1];
data/jsusfx-0.4.0/src/WDL/eel2/ns-eel-int.h:142:3:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
  char block[LLB_DSIZE];
data/jsusfx-0.4.0/src/WDL/eel2/ns-eel-int.h:176:3:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
  char last_error_string[256];
data/jsusfx-0.4.0/src/WDL/eel2/ns-eel-int.h:205:3:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
  char **function_localTable_Names[3]; // lists of pointers
data/jsusfx-0.4.0/src/WDL/eel2/ns-eel-int.h:289:3:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
  char name[1]; // varlen, does not include _global. prefix
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:158:9:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
  const char *subParmInfo[MAX_SUB_NAMESPACES];
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:261:7:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
      memcpy(p,str,str_sz);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:604:19:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char *endp = (char *)fnTable1[a].func_e;
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:842:3:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
  char match_parmcnt[4]={-1,-1,-1,-1}; // [3] is guess
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:1417:3:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
  memcpy(subfr->fname,nameptr,n);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:1446:14:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
  if (lfp>0) memcpy(nm,prefix,lfp);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:1452:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(nm+lfp,relname,lrn);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:1670:3:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
  char prefix_buf[NSEEL_MAX_VARIABLE_NAMELEN+1], nm[NSEEL_MAX_FUNCSIG_NAME+1];
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:1697:13:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
            char tmp[NSEEL_MAX_VARIABLE_NAMELEN+1];
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:1811:11:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
          memcpy(fn->startptr,f,sz);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:1842:3:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
  char retv, retv_parm[3], joined_retv=0;
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:1848:7:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
      memcpy(op,op->parms.parms[1],sizeof(*op));
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:1945:15:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
              memcpy(op,op->parms.parms[0],sizeof(*op));
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:2034:17:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
                memcpy(op,op->parms.parms[!!dv0],sizeof(*op));
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:2048:19:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
                  memcpy(op,op->parms.parms[!dv0],sizeof(*op)); // set to 0 if other action wouldn't do anything
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:2068:17:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
                memcpy(op,op->parms.parms[!!dv0],sizeof(*op));
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:2083:19:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
                  memcpy(op,op->parms.parms[0],sizeof(*op));
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:2145:19:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
                  memcpy(op,op->parms.parms[!!dv0],sizeof(*op));
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:2180:19:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
                  memcpy(op,op->parms.parms[!dv0],sizeof(*op)); // set to 0 if other action wouldn't do anything
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:2386:13:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
            memcpy(op,op->parms.parms[s ? 1 : 2],sizeof(opcodeRec));
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:2495:9:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
        memcpy(lastJoinOp,lastJoinOp->parms.parms[0],sizeof(*lastJoinOp));
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:2514:9:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
        memcpy(op,op->parms.parms[idx1],sizeof(*op));
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:2542:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char nm[NSEEL_MAX_VARIABLE_NAMELEN+1];
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:2633:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(p,&GLUE_FUNC_ENTER,GLUE_FUNC_ENTER_SIZE); 
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:2642:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(p,&GLUE_FUNC_LEAVE,GLUE_FUNC_LEAVE_SIZE); 
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:2645:3:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
  memcpy(p,&GLUE_RET,sizeof(GLUE_RET)); p+=sizeof(GLUE_RET);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:2830:11:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
          memcpy(bufOut,func,func_size);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:2845:13:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
            memcpy(bufOut,func,func_size);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:2857:13:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
            memcpy(bufOut,func,func_size);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:2887:25:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
            if (bufOut) memcpy(bufOut + parm_size, &GLUE_PUSH_P1, sizeof(GLUE_PUSH_P1));
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:2935:15:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
              memcpy(bufOut + may_need_fppush, &GLUE_POP_FPSTACK_TOSTACK, sizeof(GLUE_POP_FPSTACK_TOSTACK));
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:3009:25:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
            if (bufOut) memcpy(bufOut+parm_size,GLUE_POP_STACK_TO_FPSTACK,sizeof(GLUE_POP_STACK_TO_FPSTACK));
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:3128:9:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
        memcpy(bufOut+parm_size,GLUE_FXCH,sizeof(GLUE_FXCH));
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:3172:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(p, func, func_size);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:3286:21:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
        if (bufOut) memcpy(bufOut + parm_size,GLUE_POP_FPSTACK_TOSTACK,sizeof(GLUE_POP_FPSTACK_TOSTACK));
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:3294:21:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
        if (bufOut) memcpy(bufOut + parm_size,&GLUE_PUSH_P1PTR_AS_VALUE,sizeof(GLUE_PUSH_P1PTR_AS_VALUE));
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:3374:15:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
  if (bufOut) memcpy(bufOut + parm_size, func, func_size);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:3644:20:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
      if (bufOut)  memcpy(bufOut+parm_size,op->fntype == FN_LOGICAL_OR ? GLUE_JMP_IF_P1_NZ : GLUE_JMP_IF_P1_Z,testsz); 
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:3690:9:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
        memcpy(p, stub, stubsize);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:3725:21:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
        if (bufOut) memcpy(bufOut+parm_size,GLUE_JMP_IF_P1_NZ,sizeof(GLUE_JMP_IF_P1_NZ));
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:3731:21:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
        if (bufOut) memcpy(bufOut+parm_size,GLUE_JMP_IF_P1_Z,sizeof(GLUE_JMP_IF_P1_Z));
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:3747:21:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
        if (bufOut) memcpy(bufOut+parm_size,GLUE_JMP_NC,sizeof(GLUE_JMP_NC));
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:3784:9:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
        memcpy(ptr, stub, stubsize);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:3814:11:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
          memcpy(pwr,stubfunc,stubsz);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:3829:21:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
        if (bufOut) memcpy(bufOut + parm_size,GLUE_WHILE_SETUP,GLUE_WHILE_SETUP_SIZE);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:3833:21:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
        if (bufOut) memcpy(bufOut + parm_size,GLUE_WHILE_BEGIN,sizeof(GLUE_WHILE_BEGIN));
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:3842:21:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
        if (bufOut) memcpy(bufOut + parm_size, GLUE_WHILE_END, sizeof(GLUE_WHILE_END));
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:3848:21:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
        if (bufOut) memcpy(bufOut + parm_size, GLUE_WHILE_CHECK_RV, sizeof(GLUE_WHILE_CHECK_RV));
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:3886:11:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
          memcpy(p, stub, stubsize);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:3901:21:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
        if (bufOut) memcpy(bufOut+parm_size,GLUE_LOOP_LOADCNT,sizeof(GLUE_LOOP_LOADCNT));
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:3906:21:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
        if (bufOut) memcpy(bufOut+parm_size,GLUE_LOOP_CLAMPCNT,GLUE_LOOP_CLAMPCNT_SIZE);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:3912:21:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
        if (bufOut) memcpy(bufOut+parm_size,GLUE_LOOP_BEGIN,GLUE_LOOP_BEGIN_SIZE);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:3923:21:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
        if (bufOut) memcpy(bufOut+parm_size,GLUE_LOOP_END,sizeof(GLUE_LOOP_END));
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:3949:23:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
          if (bufOut) memcpy(bufOut,w?GLUE_SET_P1_NZ:GLUE_SET_P1_Z,wsz);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:3960:25:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
            if (bufOut) memcpy(bufOut,GLUE_FLDZ,sizeof(GLUE_FLDZ));
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:3970:25:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
            if (bufOut) memcpy(bufOut,GLUE_FLD1,sizeof(GLUE_FLD1));
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:4172:7:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
      memcpy(bufOut,stub,stubsize);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:4239:9:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
        memcpy(bufOut,stub,stubsize);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:4260:19:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
      if (bufOut) memcpy(bufOut,GLUE_POP_FPSTACK,GLUE_POP_FPSTACK_SIZE);   
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:4272:3:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
  char tmp[1024+8];
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:4277:3:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
  memcpy(tmp,str,l+1);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:4284:3:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
  memcpy(str+amount,tmp,l+1);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:4392:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char is_fname[NSEEL_MAX_VARIABLE_NAMELEN+1];
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:4425:41:  [2] (integer) atoi:
  Unless checked, the resulting number can exceed the expected range
  (CWE-190). 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).
            ctx->optimizeDisableFlags = atoi(p+19);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:4455:9:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
        memcpy(is_fname, funcname, funcname_len);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:4539:30:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
              if (osz && ot) memcpy(ctx->function_localTable_Names[localTableContext],ot,sizeof(char *) * osz);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:4558:21:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
                    memcpy(newstr,tok1,l);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:4626:7:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
      char buf[512];
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:4628:7:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
      sprintf(buf,"pre opt sz=%d (tsackDepth=%d)\n",compileOpcodes(ctx,start_opcode,NULL,1024*1024*256,NULL, NULL,RETURNVALUE_IGNORE,NULL,&sd,NULL),sd);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:4647:7:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
      sprintf(buf,"post opt sz=%d, stack depth=%d\n",compileOpcodes(ctx,start_opcode,NULL,1024*1024*256,NULL,NULL, RETURNVALUE_IGNORE,NULL,&sd,NULL),sd);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:4667:19:  [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? (CWE-362).
      g_debugfp = fopen("C:/temp/foo.txt","w");
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:4754:9:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
        char cur_err[sizeof(ctx->last_error_string)];
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:4883:9:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
        memcpy(writeptr,&GLUE_FUNC_ENTER,GLUE_FUNC_ENTER_SIZE); 
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:4895:9:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
        memcpy(writeptr,(char*)p->code,p->codesz);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:4902:9:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
        memcpy(writeptr,&GLUE_FUNC_LEAVE,GLUE_FUNC_LEAVE_SIZE); 
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:4905:7:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
      memcpy(writeptr,&GLUE_RET,sizeof(GLUE_RET)); writeptr += sizeof(GLUE_RET);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:4938:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(handle->code_stats,ctx->l_stats,sizeof(ctx->l_stats));
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:5019:11:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
          char buf[512];
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:5039:18:  [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? (CWE-362).
      FILE *fp = fopen("/var/db/receipts/com.apple.pkg.Rosetta.plist","r");
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:5316:34:  [2] (integer) atoi:
  Unless checked, the resulting number can exceed the expected range
  (CWE-190). 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).
    return __nseel_global_regs + atoi(gv+3);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:5447:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(b,name,l);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:5594:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char b[64];
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:5618:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char buf[2048];
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:5621:5:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    memcpy(buf,tmp,tmplen);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-eval.c:295:9:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
        char buf[NSEEL_MAX_VARIABLE_NAMELEN*2];
data/jsusfx-0.4.0/src/WDL/eel2/nseel-eval.c:297:9:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
        memcpy(buf,tok,toklen);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-eval.c:436:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char buf[512];
data/jsusfx-0.4.0/src/WDL/eel2/nseel-eval.c:437:5:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
    sprintf(buf,"tok: %c (%d)\n",a,a);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-ram.c:240:12:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
      else memcpy(destptr,srcptr,sizeof(EEL_F)*copy_len);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-ram.c:269:10:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
    else memcpy(destptr,srcptr,sizeof(EEL_F)*copy_len);
data/jsusfx-0.4.0/src/WDL/eel2/y.tab.c:1099:7:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
      char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
data/jsusfx-0.4.0/src/WDL/eel2/y.tab.c:1116:7:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
      char yyformat[sizeof yyunexpected
data/jsusfx-0.4.0/src/WDL/eel2/y.tab.c:1297:3:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
  char yymsgbuf[128];
data/jsusfx-0.4.0/src/WDL/heapbuf.h:91:7:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
      char tmp[512];
data/jsusfx-0.4.0/src/WDL/heapbuf.h:97:7:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
      char tmp[512];
data/jsusfx-0.4.0/src/WDL/heapbuf.h:128:30:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
          if (newbuf&&m_buf) memcpy(newbuf,m_buf,a);
data/jsusfx-0.4.0/src/WDL/heapbuf.h:165:19:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
                  char tmp[512];
data/jsusfx-0.4.0/src/WDL/heapbuf.h:191:31:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
                    if (sz>0) memcpy(nbuf,m_buf,sz);
data/jsusfx-0.4.0/src/WDL/heapbuf.h:225:22:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
          if (m_buf) memcpy(m_buf,hb->m_buf,m_size = hb->m_size);
data/jsusfx-0.4.0/src/WDL/heapbuf.h:233:16:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
          else memcpy(Get(),hb->Get(),newsz);
data/jsusfx-0.4.0/src/WDL/heapbuf.h:290:20:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
          if (buf) memcpy(p,buf,bufsz*sizeof(PTRTYPE));
data/jsusfx-0.4.0/src/WDL/heapbuf.h:304:20:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
          if (buf) memcpy(p,buf,bufsz*sizeof(PTRTYPE));
data/jsusfx-0.4.0/src/WDL/wdlstring.h:269:13:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
            memcpy(b+i, "...",4);
data/jsusfx-0.4.0/src/WDL/wdlstring.h:276:11:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
          memcpy(b+maxlen-4, "...",4);    
data/jsusfx-0.4.0/src/jsusfx.cpp:194:4:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
			memcpy(&ctx->midiSendBuffer[ctx->midiSendBufferSize], buf, len);
data/jsusfx-0.4.0/src/jsusfx.cpp:247:2:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	char buffer[2048];
data/jsusfx-0.4.0/src/jsusfx.cpp:387:3:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
		sprintf(name, "slider%d", index);
data/jsusfx-0.4.0/src/jsusfx.cpp:449:40:  [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? (CWE-362).
std::istream* JsusFxPathLibrary_Basic::open(const std::string &path) {
data/jsusfx-0.4.0/src/jsusfx.cpp:495:6:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    	char name[16];
data/jsusfx-0.4.0/src/jsusfx.cpp:496:6:  [2] (buffer) sprintf:
  Does not check for buffer overflows (CWE-120). Use sprintf_s, snprintf, or
  vsnprintf. Risk is low because the source has a constant maximum length.
    	sprintf(name, "spl%d", i);
data/jsusfx-0.4.0/src/jsusfx.cpp:550:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char errorMsg[4096];
data/jsusfx-0.4.0/src/jsusfx.cpp:624:33:  [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? (CWE-362).
	std::istream *is = pathLibrary.open(resolvedPath);
data/jsusfx-0.4.0/src/jsusfx.cpp:657:2:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	char line[4096];
data/jsusfx-0.4.0/src/jsusfx.cpp:708:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char line[4096];
data/jsusfx-0.4.0/src/jsusfx.cpp:902:36:  [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? (CWE-362).
	std::istream *input = pathLibrary.open(resolvedPath);
data/jsusfx-0.4.0/src/jsusfx.cpp:947:36:  [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? (CWE-362).
	std::istream *input = pathLibrary.open(resolvedPath);
data/jsusfx-0.4.0/src/jsusfx.h:54:2:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	char name[kMaxName + 1];
data/jsusfx-0.4.0/src/jsusfx.h:55:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char desc[64];
data/jsusfx-0.4.0/src/jsusfx.h:127:24:  [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? (CWE-362).
	virtual std::istream* open(const std::string &path) {
data/jsusfx-0.4.0/src/jsusfx.h:149:24:  [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? (CWE-362).
	virtual std::istream* open(const std::string &path) override;
data/jsusfx-0.4.0/src/jsusfx.h:188:5:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
    char desc[64];
data/jsusfx-0.4.0/src/jsusfx_file.cpp:212:18:  [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? (CWE-362).
			if (files[i]->open(jsusFx, resolvedPath.c_str()) == false)
data/jsusfx-0.4.0/src/jsusfx_file.cpp:379:19:  [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? (CWE-362).
bool JsusFx_File::open(JsusFx & jsusFx, const char * filename)
data/jsusfx-0.4.0/src/jsusfx_file.cpp:383:30:  [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? (CWE-362).
	stream = jsusFx.pathLibrary.open(filename);
data/jsusfx-0.4.0/src/jsusfx_file.cpp:517:4:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
			char line[2048];
data/jsusfx-0.4.0/src/jsusfx_file.h:133:7:  [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? (CWE-362).
	bool open(JsusFx & jsusFx, const char * _filename);
data/jsusfx-0.4.0/src/riff.cpp:60:2:  [2] (buffer) memcpy:
  Does not check for buffer overflows when copying to destination (CWE-120).
  Make sure destination can always hold the source data.
	memcpy(result, src, numBytes);
data/jsusfx-0.4.0/src/riff.cpp:106:2:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
	char id[4];
data/jsusfx-0.4.0/test/jsusfx_test.cpp:57:24:  [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? (CWE-362).
	virtual std::istream* open(const std::string &path) override {
data/jsusfx-0.4.0/test/jsusfx_test.cpp:80:9:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
        char output[4096];
data/jsusfx-0.4.0/test/jsusfx_test.cpp:91:9:  [2] (buffer) char:
  Statically-sized arrays can be improperly restricted, leading to potential
  overflows or other issues (CWE-119!/CWE-120). Perform bounds checking, use
  functions that limit length, or ensure that the size is larger than the
  maximum possible length.
        char output[4096];
data/jsusfx-0.4.0/max/jsusfx_max.cpp:131:9:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
        strncpy(x->scriptname, filename, MAX_PATH_CHARS);
data/jsusfx-0.4.0/max/jsusfx_max.cpp:204:38:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
        sysmem_ptrandhand(initText,h,strlen(initText));
data/jsusfx-0.4.0/pd/jsusfx_pd.cpp:283:9:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
        strncpy(x->scriptpath, filename.c_str(), 1023);
data/jsusfx-0.4.0/src/WDL/eel2/eel_fft.h:6:44:  [1] (buffer) mismatch:
  Function does not check the second iterator for over-read conditions
  (CWE-126). This function is often discouraged by most C++ coding standards
  in favor of its safer alternatives provided since C++14. Consider using a
  form of this function that checks the second iterator before potentially
  overflowing it.
#error WDL_FFT_REALSIZE -- EEL_F_SIZE size mismatch
data/jsusfx-0.4.0/src/WDL/eel2/eel_files.h:29:25:  [1] (buffer) fgetc:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
  if (fp) return (EEL_F)fgetc(fp);
data/jsusfx-0.4.0/src/WDL/eel2/eel_files.h:103:108:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    EEL_STRING_DEBUGOUT("fgets: bad destination specifier passed %f, throwing away %d bytes",*strOut, (int)strlen(buf));
data/jsusfx-0.4.0/src/WDL/eel2/eel_files.h:105:17:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    return (int)strlen(buf);
data/jsusfx-0.4.0/src/WDL/eel2/eel_files.h:163:26:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    const int ssl = (int)strlen(str);
data/jsusfx-0.4.0/src/WDL/eel2/eel_lice.h:1498:35:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    int len = (int)(sep ? sep-p : strlen(p));
data/jsusfx-0.4.0/src/WDL/eel2/eel_lice.h:1500:5:  [1] (buffer) lstrcpyn:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    lstrcpyn(buf, p, destlen+1);
data/jsusfx-0.4.0/src/WDL/eel2/eel_lice.h:1569:20:  [1] (buffer) lstrcpyn:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
    if (p && p[0]) lstrcpyn(m_cursor_name, p, sizeof(m_cursor_name));
data/jsusfx-0.4.0/src/WDL/eel2/eel_lice.h:1623:39:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
      s_len = fs?fs->GetLength():(int)strlen(s);
data/jsusfx-0.4.0/src/WDL/eel2/eel_lice.h:1692:53:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
                           GetActiveFont(),buf,(int)strlen(buf),
data/jsusfx-0.4.0/src/WDL/eel2/eel_misc.h:20:28:  [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 (CWE-676). Use nanosleep(2) or setitimer(2) instead.
    if (*amt > 30000000.0) usleep(((useconds_t)30000000)*1000);
data/jsusfx-0.4.0/src/WDL/eel2/eel_misc.h:21:10:  [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 (CWE-676). Use nanosleep(2) or setitimer(2) instead.
    else usleep((useconds_t)(*amt*1000.0+0.5));
data/jsusfx-0.4.0/src/WDL/eel2/eel_net.h:510:40:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
      l = ws ? ws->GetLength() : (int) strlen(fn);
data/jsusfx-0.4.0/src/WDL/eel2/eel_strings.h:891:67:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
        const int fmt_len  = wr_src ? wr_src->GetLength() : (int) strlen(fmt);
data/jsusfx-0.4.0/src/WDL/eel2/eel_strings.h:1093:45:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
      const int wl=(wr?wr->GetLength():(int)strlen(fmt));
data/jsusfx-0.4.0/src/WDL/eel2/eel_strings.h:1231:45:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
      const int wl=(wr?wr->GetLength():(int)strlen(fmt));
data/jsusfx-0.4.0/src/WDL/eel2/eel_strings.h:1353:60:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
        int insert_l = wr_src ? wr_src->GetLength() : (int)strlen(fmt);
data/jsusfx-0.4.0/src/WDL/eel2/eel_strings.h:1462:29:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    if (fmt) return (EEL_F) strlen(fmt);
data/jsusfx-0.4.0/src/WDL/eel2/eel_strings.h:1517:99:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    if (fmt && msg) return eel_string_match(opaque,fmt,msg,0,0, fmt + (fmt_wr?fmt_wr->GetLength():strlen(fmt)), msg + (msg_wr?msg_wr->GetLength():strlen(msg)),(int)num_parms-2,parms+2) ? 1.0 : 0.0;
data/jsusfx-0.4.0/src/WDL/eel2/eel_strings.h:1517:147:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    if (fmt && msg) return eel_string_match(opaque,fmt,msg,0,0, fmt + (fmt_wr?fmt_wr->GetLength():strlen(fmt)), msg + (msg_wr?msg_wr->GetLength():strlen(msg)),(int)num_parms-2,parms+2) ? 1.0 : 0.0;
data/jsusfx-0.4.0/src/WDL/eel2/eel_strings.h:1530:99:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    if (fmt && msg) return eel_string_match(opaque,fmt,msg,0,1, fmt + (fmt_wr?fmt_wr->GetLength():strlen(fmt)), msg + (msg_wr?msg_wr->GetLength():strlen(msg)),(int)num_parms-2,parms+2) ? 1.0 : 0.0;
data/jsusfx-0.4.0/src/WDL/eel2/eel_strings.h:1530:147:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    if (fmt && msg) return eel_string_match(opaque,fmt,msg,0,1, fmt + (fmt_wr?fmt_wr->GetLength():strlen(fmt)), msg + (msg_wr?msg_wr->GetLength():strlen(msg)),(int)num_parms-2,parms+2) ? 1.0 : 0.0;
data/jsusfx-0.4.0/src/WDL/eel2/eelscript.h:226:34:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
      inst->m_defer_eval.Add(str,strlen(str)+1);
data/jsusfx-0.4.0/src/WDL/eel2/eelscript.h:254:35:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
      inst->m_atexit_eval.Add(str,strlen(str)+1);
data/jsusfx-0.4.0/src/WDL/eel2/eelscript.h:635:13:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    offs += strlen(ptr)+1;
data/jsusfx-0.4.0/src/WDL/eel2/eelscript.h:679:33:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
  while (*p) { fs->Add(p); p += strlen(p) + 1; }
data/jsusfx-0.4.0/src/WDL/eel2/eelscript.h:681:33:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
  while (*p) { fs->Add(p); p += strlen(p) + 1; }
data/jsusfx-0.4.0/src/WDL/eel2/eelscript.h:683:33:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
  while (*p) { fs->Add(p); p += strlen(p) + 1; }
data/jsusfx-0.4.0/src/WDL/eel2/eelscript.h:702:33:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
  while (*p) { fs->Add(p); p += strlen(p) + 1; }
data/jsusfx-0.4.0/src/WDL/eel2/eelscript.h:706:33:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
  while (*p) { fs->Add(p); p += strlen(p) + 1; }
data/jsusfx-0.4.0/src/WDL/eel2/eelscript.h:710:33:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
  while (*p) { fs->Add(p); p += strlen(p) + 1; }
data/jsusfx-0.4.0/src/WDL/eel2/eelscript.h:714:33:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
  while (*p) { fs->Add(p); p += strlen(p) + 1; }
data/jsusfx-0.4.0/src/WDL/eel2/eelscript.h:718:33:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
  while (*p) { fs->Add(p); p += strlen(p) + 1; }
data/jsusfx-0.4.0/src/WDL/eel2/eelscript.h:722:33:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
  while (*p) { fs->Add(p); p += strlen(p) + 1; }
data/jsusfx-0.4.0/src/WDL/eel2/glue_port.h:356:12:  [1] (buffer) equal:
  Function does not check the second iterator for over-read conditions
  (CWE-126). This function is often discouraged by most C++ coding standards
  in favor of its safer alternatives provided since C++14. Consider using a
  form of this function that checks the second iterator before potentially
  overflowing it.
BC_DECLASM(equal,EQUAL)
data/jsusfx-0.4.0/src/WDL/eel2/loose_eel.cpp:114:21:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
               line[strlen(line)-1] == '\r' ||
data/jsusfx-0.4.0/src/WDL/eel2/loose_eel.cpp:115:21:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
               line[strlen(line)-1] == '\n' ||
data/jsusfx-0.4.0/src/WDL/eel2/loose_eel.cpp:116:21:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
               line[strlen(line)-1] == '\t' ||
data/jsusfx-0.4.0/src/WDL/eel2/loose_eel.cpp:117:21:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
               line[strlen(line)-1] == ' '
data/jsusfx-0.4.0/src/WDL/eel2/loose_eel.cpp:118:23:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
              )) line[strlen(line)-1]=0;
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:247:34:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
  const size_t strszfull = str ? strlen(str) : 0;
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:325:16:  [1] (buffer) equal:
  Function does not check the second iterator for over-read conditions
  (CWE-126). This function is often discouraged by most C++ coding standards
  in favor of its safer alternatives provided since C++14. Consider using a
  form of this function that checks the second iterator before potentially
  overflowing it.
  DECL_ASMFUNC(equal)
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:816:29:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    const size_t name_len = strlen(name);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:821:24:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
      const size_t l = strlen(nmchk);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:900:33:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
            const size_t plen = strlen(p);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:924:29:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
          const size_t tl = strlen(p);     
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:950:46:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
        memmove(sname, sname+rel_prefix_len, strlen(sname + rel_prefix_len) + 1);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:959:40:  [1] (buffer) lstrcatn:
  Easily used incorrectly (e.g., incorrectly computing the correct maximum
  size to add) [MS-banned] (CWE-120). Consider strcat_s, strlcat, or
  automatically resizing strings. Risk is low because the source is a
  constant string.
        if (ctx->last_error_string[0]) lstrcatn(ctx->last_error_string, ", ", sizeof(ctx->last_error_string));
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:993:32:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    const size_t ourcall_len = strlen(ourcall);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:1003:37:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
        const size_t thisfunc_len = strlen(thisfunc);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:1044:75:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
      if (ourcall != rec->relname) memmove((char *)rec->relname, ourcall, strlen(ourcall)+1);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:1064:52:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
                memmove((char *)rec->relname, src, strlen(src)+1);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:1078:40:  [1] (buffer) lstrcatn:
  Easily used incorrectly (e.g., incorrectly computing the correct maximum
  size to add) [MS-banned] (CWE-120). Consider strcat_s, strlcat, or
  automatically resizing strings. Risk is low because the source is a
  constant string.
        if (ctx->last_error_string[0]) lstrcatn(ctx->last_error_string, ", ", sizeof(ctx->last_error_string));
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:1092:36:  [1] (buffer) lstrcatn:
  Easily used incorrectly (e.g., incorrectly computing the correct maximum
  size to add) [MS-banned] (CWE-120). Consider strcat_s, strlcat, or
  automatically resizing strings. Risk is low because the source is a
  constant string.
    if (ctx->last_error_string[0]) lstrcatn(ctx->last_error_string, ", ", sizeof(ctx->last_error_string));
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:1225:34:  [1] (buffer) lstrcatn:
  Easily used incorrectly (e.g., incorrectly computing the correct maximum
  size to add) [MS-banned] (CWE-120). Consider strcat_s, strlcat, or
  automatically resizing strings. Risk is low because the source is a
  constant string.
  if (ctx->last_error_string[0]) lstrcatn(ctx->last_error_string, ", ", sizeof(ctx->last_error_string));
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:1240:5:  [1] (buffer) lstrcatn:
  Easily used incorrectly (e.g., incorrectly computing the correct maximum
  size to add) [MS-banned] (CWE-120). Consider strcat_s, strlcat, or
  automatically resizing strings. Risk is low because the source is a
  constant string.
    lstrcatn(ctx->last_error_string," parms",sizeof(ctx->last_error_string));
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:1415:7:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
  n = strlen(nameptr);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:1434:35:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
  int lfp = 0, lrn=relname ? (int)strlen(relname) : 0;
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:1552:8:  [1] (buffer) equal:
  Function does not check the second iterator for over-read conditions
  (CWE-126). This function is often discouraged by most C++ coding standards
  in favor of its safer alternatives provided since C++14. Consider using a
  form of this function that checks the second iterator before potentially
  overflowing it.
    RF(equal);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:1722:49:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
            local_namespace.subParmInfo[x] = nm+strlen(nm);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:4274:14:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
  int l=(int)strlen(str);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:4356:35:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
  _expression_end = _expression + strlen(_expression);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:4700:43:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
                if (nptr && *nptr && nptr[strlen(nptr)-1] == '*') 
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:5336:18:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    size_t gvl = strlen(gv);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:5435:16:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    size_t l = strlen(name);
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:5488:33:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
  if (!strnicmp(var,"reg",3) && strlen(var) == 5 && isdigit(var[3]) && isdigit(var[4]))
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:5502:33:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
  if (!strnicmp(var,"reg",3) && strlen(var) == 5 && isdigit(var[3]) && isdigit(var[4]))
data/jsusfx-0.4.0/src/WDL/eel2/nseel-compiler.c:5608:38:  [1] (buffer) lstrcatn:
  Easily used incorrectly (e.g., incorrectly computing the correct maximum
  size to add) [MS-banned] (CWE-120). Consider strcat_s, strlcat, or
  automatically resizing strings. Risk is low because the source is a
  constant string.
      if (ctx->last_error_string[0]) lstrcatn(ctx->last_error_string, ", ", sizeof(ctx->last_error_string));
data/jsusfx-0.4.0/src/WDL/eel2/y.tab.c:980:21:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
#   define yystrlen strlen
data/jsusfx-0.4.0/src/WDL/mutex.h:192: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 (CWE-676). Use nanosleep(2) or setitimer(2) instead.
      while (m_sharedcnt>0) usleep(100);		
data/jsusfx-0.4.0/src/WDL/mutex.h:214: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 (CWE-676). Use nanosleep(2) or setitimer(2) instead.
      while (m_sharedcnt>1) usleep(100);		
data/jsusfx-0.4.0/src/WDL/wdlcstring.h:63:10:  [1] (buffer) lstrcpyn:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
  #ifdef lstrcpyn
data/jsusfx-0.4.0/src/WDL/wdlcstring.h:64:10:  [1] (buffer) lstrcpyn:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
  #undef lstrcpyn
data/jsusfx-0.4.0/src/WDL/wdlcstring.h:66:11:  [1] (buffer) lstrcpyn:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
  #define lstrcpyn lstrcpyn_safe
data/jsusfx-0.4.0/src/WDL/wdlcstring.h:76:8:  [1] (buffer) lstrcatn:
  Easily used incorrectly (e.g., incorrectly computing the correct maximum
  size to add) [MS-banned] (CWE-120). Consider strcat_s, strlcat, or
  automatically resizing strings.
  void lstrcatn(char *o, const char *in, INT_PTR count);
data/jsusfx-0.4.0/src/WDL/wdlcstring.h:134:28:  [1] (buffer) lstrcatn:
  Easily used incorrectly (e.g., incorrectly computing the correct maximum
  size to add) [MS-banned] (CWE-120). Consider strcat_s, strlcat, or
  automatically resizing strings.
  _WDL_CSTRING_PREFIX void lstrcatn(char *o, const char *in, INT_PTR count)
data/jsusfx-0.4.0/src/WDL/wdlstring.h:90:56:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
    int GetLength() const { return m_hb.GetSize()?(int)strlen((const char*)m_hb.Get()):0; }
data/jsusfx-0.4.0/src/WDL/wdlstring.h:118:21:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
        else s=(int)strlen(str);   
data/jsusfx-0.4.0/src/WDL/wdlstring.h:141:21:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
        else s=(int)strlen(str);
data/jsusfx-0.4.0/src/WDL/wdlstring.h:178:24:  [1] (buffer) strlen:
  Does not handle strings that are not \0-terminated; if given one it may
  perform an over-read (it could cause a crash if unprotected) (CWE-126).
        else ilen=(int)strlen(str);
data/jsusfx-0.4.0/src/jsusfx.cpp:248:2:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
	strncpy(buffer, param, 2048);
data/jsusfx-0.4.0/src/jsusfx.cpp:263:3:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
		strncpy(desc, tmp, 64);
data/jsusfx-0.4.0/src/jsusfx.cpp:692:4:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
			strncpy(desc, src, 64);
data/jsusfx-0.4.0/src/jsusfx.cpp:795:17:  [1] (buffer) strncpy:
  Easily used incorrectly; doesn't always \0-terminate or check for invalid
  pointers [MS-banned] (CWE-120).
                strncpy(desc, src, 64);
data/jsusfx-0.4.0/src/jsusfx_file.cpp:456:12:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
			stream->read((char*)bytes, size);
data/jsusfx-0.4.0/src/riff.cpp:42:6:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
bool read(const uint8_t *& src, int & srcSize, T & result)
data/jsusfx-0.4.0/src/riff.cpp:55:6:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
bool read(const uint8_t *& src, int & srcSize, void * result, const int numBytes)
data/jsusfx-0.4.0/src/riff.cpp:108:7:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
	if (!read(src, srcSize, id, 4))
data/jsusfx-0.4.0/src/riff.cpp:140:8:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
		if (!read(src, srcSize, size))
data/jsusfx-0.4.0/src/riff.cpp:202:10:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
			ok &= read(src, srcSize, fmtLength);
data/jsusfx-0.4.0/src/riff.cpp:203:10:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
			ok &= read(src, srcSize, fmtCompressionType);
data/jsusfx-0.4.0/src/riff.cpp:204:10:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
			ok &= read(src, srcSize, fmtChannelCount);
data/jsusfx-0.4.0/src/riff.cpp:205:10:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
			ok &= read(src, srcSize, fmtSampleRate);
data/jsusfx-0.4.0/src/riff.cpp:206:10:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
			ok &= read(src, srcSize, fmtByteRate);
data/jsusfx-0.4.0/src/riff.cpp:207:10:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
			ok &= read(src, srcSize, fmtBlockAlign);
data/jsusfx-0.4.0/src/riff.cpp:208:10:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
			ok &= read(src, srcSize, fmtBitDepth);
data/jsusfx-0.4.0/src/riff.cpp:210:11:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
				ok &= read(src, srcSize, fmtExtraLength);
data/jsusfx-0.4.0/src/riff.cpp:248:9:  [1] (buffer) read:
  Check buffer boundaries if used in a loop including recursive loops
  (CWE-120, CWE-20).
			if (!read(src, srcSize, bytes, byteCount))

ANALYSIS SUMMARY:

Hits = 383
Lines analyzed = 37098 in approximately 0.89 seconds (41496 lines/second)
Physical Source Lines of Code (SLOC) = 30345
Hits@level = [0] 117 [1] 101 [2] 244 [3]   3 [4]  32 [5]   3
Hits@level+ = [0+] 500 [1+] 383 [2+] 282 [3+]  38 [4+]  35 [5+]   3
Hits/KSLOC@level+ = [0+] 16.4772 [1+] 12.6215 [2+] 9.29313 [3+] 1.25227 [4+] 1.1534 [5+] 0.0988631
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!
See 'Secure Programming HOWTO'
(https://dwheeler.com/secure-programs) for more information.