Home
last modified time | relevance | path

Searched refs:nInBuf (Results 1 – 6 of 6) sorted by relevance

/dports/x11/xkbevd/xkbevd-1.1.4/
H A Dcfgscan.c51 static int nInBuf = 0; variable
188 nInBuf = 0; in yyGetString()
244 buf[nInBuf++] = '\0'; in yyGetString()
259 nInBuf = 0; in yyGetKeyName()
315 buf[nInBuf++] = '\0'; in yyGetKeyName()
349 nInBuf = 1; in yyGetIdent()
354 buf[nInBuf++] = '\0'; in yyGetIdent()
385 nInBuf = 1; in yyGetNumber()
388 buf[nInBuf++] = ch; in yyGetNumber()
392 buf[nInBuf++] = ch; in yyGetNumber()
[all …]
/dports/x11/xkbcomp/xkbcomp-1.4.5/
H A Dxkbscan.c620 int nInBuf = 0; in yyGetNumber() local
623 nInBuf = 1; in yyGetNumber()
625 && (isxdigit(ch) || ((nInBuf == 1) && (ch == 'x'))) in yyGetNumber()
626 && nInBuf < (nMaxBuffSize - 1)) in yyGetNumber()
628 buf[nInBuf++] = ch; in yyGetNumber()
630 if ((ch == '.') && (nInBuf < (nMaxBuffSize - 1))) in yyGetNumber()
633 buf[nInBuf++] = ch; in yyGetNumber()
635 && nInBuf < (nMaxBuffSize - 1)) in yyGetNumber()
637 buf[nInBuf++] = ch; in yyGetNumber()
640 buf[nInBuf++] = '\0'; in yyGetNumber()
H A DChangeLog839 Buffer overflow (CWE 120): In array dereference of (*buf)[nInBuf] with index 'nInBuf'
840 Array size is 1024 bytes, nInBuf >= 1 and nInBuf <= 1024
842 Buffer overflow (CWE 120): In array dereference of (*buf)[nInBuf] with index 'nInBuf'
843 Array size is 1024 bytes, nInBuf <= 1025
/dports/net/libvncserver/libvncserver-LibVNCServer-0.9.13/libvncserver/
H A Dws_decode.c345 hybiReadAndDecode(ws_ctx_t *wsctx, char *dst, int len, int *sockRet, int nInBuf) in hybiReadAndDecode() argument
397 toDecode = n + wsctx->carrylen + nInBuf; in hybiReadAndDecode()
528 int nInBuf; in webSocketsDecodeHybi() local
530 wsctx->hybiDecodeState = hybiReadHeader(wsctx, &result, &nInBuf); in webSocketsDecodeHybi()
537 wsctx->hybiDecodeState = hybiReadAndDecode(wsctx, dst, len, &result, nInBuf); in webSocketsDecodeHybi()
/dports/textproc/wv2/wv2-0.4.2/src/
H A Dzcodec.hxx119 ZCodec( ULONG nInBuf, ULONG nOutBuf, ULONG nMemUsage = MAX_MEM_USAGE );
/dports/x11/libxkbfile/libxkbfile-1.1.0/src/
H A Dxkbconfig.c76 int ch, nInBuf; in ScanString() local
78 nInBuf = 0; in ScanString()
130 if (nInBuf < XKBCF_MAX_STR_LEN - 1) in ScanString()
131 _XkbCF_rtrn[nInBuf++] = ch; in ScanString()
134 _XkbCF_rtrn[nInBuf++] = '\0'; in ScanString()