那些年写过的bug[0]

Posted Xupeiyi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了那些年写过的bug[0]相关的知识,希望对你有一定的参考价值。

在此记录一下自己写过的那些bug owo。

1)指向数组的指针在malloc前忘记初始化(赋值为NULL)

2)

some_struct * ptr = A;
array[1] = *A;

然后就忘了释放ptr...

3)

char * buffer = NULL;
size_t sz = 0;
while(getline(&buffer, &sz, file) > 0){
   ...
}

然后忘记释放buffer...

4)
假设line是一个字符串(比如"apple")。

line[2] = \'\\0\';

然后

strchr(line, \'e\');

就返回NULL了。因为现在的line是"ap";

5)

int* array = malloc(5 * sizeof(*array));
for (int i = 0; i < 5; i++){
    free(array + i);
}

重复释放内存了。

6)

size_t idx = 0;
unsigned num = n;
  int j = -1;
  while(num < 5){
    j++;
    if((j >= idx) && (j <= idx + n - 1)){
      continue;
    }
    ans.cards[num] = hand->cards[j];
    num++;
  }

但是当n = 0时, idx + n - 1是一个极大的正数,因此循环会重复许多许多次。可以改为:

if((j >= idx) && (j < idx + n))

以上是关于那些年写过的bug[0]的主要内容,如果未能解决你的问题,请参考以下文章

那些年写过的毕设论文

python 生成18年写过的博客词云

那些年,我们一起写过的“单例模式”

那些年,我们一起写过的“单例模式”

程序员迄今为止写过的最大 Bug!

人人都写过的5个Bug!