代码搜索:bug
找到约 10,000 项符合「bug」的源代码
代码结果 10,000
www.eeworm.com/read/296483/8100777
txt 2228bug.txt
bugs in 2228
- there is no reply code to AUTH to indicate that multiple AUTHs are
not accepted by the server (something like 503 is ideal)
- there is no reply to AUTH that contains adat data, b
www.eeworm.com/read/333551/12674452
php decode_bug.php
www.eeworm.com/read/144361/12800605
c bug3.c
#include
#include
int
main (void)
{
FILE *f;
int i;
const char filename[] = "/tmp/bug3.test";
f = fopen(filename, "w+");
for (i=0; i
www.eeworm.com/read/144361/12800663
c bug4.c
#include
#include
#include
int stdio_block_read = 1, stdio_block_write = 1;
int
main (int argc, char *argv[])
{
FILE *f;
int i;
char buffer[31];
const char fi
www.eeworm.com/read/144361/12800665
c bug5.c
/* If stdio is working correctly, after this is run infile and outfile
will have the same contents. If the bug (found in GNU C library 0.3)
exhibits itself, outfile will be missing the 2nd thro
www.eeworm.com/read/144361/12800667
c bug8.c
#include
#include
int
main(int argc, char *argv[])
{
char buf[100];
int point, x, y;
int status = 0;
sscanf("0x10 10", "%x %x", &x, &y);
sprintf(buf, "%d %d"
www.eeworm.com/read/144361/12800668
c bug12.c
#include
#include
char x[4096], z[4096], b[21], m[4096 * 4];
int
main (void)
{
FILE *f = tmpfile ();
int i, failed = 0;
memset (x, 'x', 4096);
memset (z, 'z', 4096);
www.eeworm.com/read/144361/12800703
c bug10.c
#include
int
main (int arc, char *argv[])
{
int n, res;
unsigned int val;
char s[] = "111";
int result = 0;
n = 0;
res = sscanf(s, "%u %n", &val, &n);
printf("Result of ssca