我的程序有问题,并出现以下错误:
检测到堆损坏:在0x00968988处的正常块(#9873672)之前。
CRT检测到应用程序在堆缓冲区启动之前写入内存。
我试图寻找修复方法,但我无法找出我的程序有什么问题,要修复什么以及在哪里:(
下面是我正在使用的函数,它会给我带来问题:
我所做的基本上是在一个文件中查找一个特定的关键字(getText函数的参数)并打印它的匹配值。
抱歉,如果大多数变量是法语,这是学校的一个项目,我们的老师要求我们使用法语名称>_<
#include "getText.h"
#include "main.h"
#include <stdlib.h>
texteLangue* ressourcesTexteLangue = NULL;
int compteur = 0;
char* getText(char* clef)
{
char* texte = NULL;
texte = clef; //clef is the keyword passed in the function as argument
texteLangue temp;
temp.clef = clef;
texteLangue* resultat = (texteLangue*) bsearch(&temp, ressourcesTexteLangue, compteur, sizeof(texteLangue), comparerClef); //returns the value associated with the key
if (clef != NULL)
{
if (resultat != NULL)
texte = resultat->valeur;
}
return texte;
}
void lectureTexte(char* langue)
{
char nomFichierRessources[64];
sprintf(nomFichierRessources, "ressources_%s.txt", langue); //give the file name a specific ending depending on the language chosen
FILE* FichierRessources = fopen(nomFichierRessources, "r");
if (FichierRessources == NULL)
{
system("cls");
perror("The following error occured ");
system("PAUSE");
exit(42);
}
//allocates memory for the language resources
int taille = 10;
ressourcesTexteLangue = (texteLangue *) calloc(taille, sizeof(texteLangue));
if (ressourcesTexteLangue == NULL)
printf("Pas assez de place mémoire pour les ressources texte");
//gives a value to TextResource.key and TextResource.value for each line of the file
char* ligne;
while ((ligne = lectureLigne(FichierRessources)))
{
if (strlen(ligne) > 0)
{
if (compteur == taille)
{
taille += 10;
ressourcesTexteLangue = (texteLangue *) realloc(ressourcesTexteLangue, taille * sizeof(texteLangue));
}
ressourcesTexteLangue[compteur].clef = ligne;
while (*ligne != '=')
{
ligne++;
}
*ligne = '\0';
ligne++;
ressourcesTexteLangue[compteur].valeur = ligne;
compteur++;
}
}
//sorts out the values of TextResource obtained
qsort(ressourcesTexteLangue, compteur, sizeof(texteLangue), comparerClef);
fclose(FichierRessources);
}
//reads a line and returns it
char* lectureLigne(FILE *fichier)
{
int longeur = 10, i = 0, c = 0;
char* ligne = (char*) calloc(longeur, sizeof(char));
if (fichier)
{
c = fgetc(fichier);
while (c != EOF)
{
if (i == longeur)
{
longeur += 10;
ligne = (char*) realloc(ligne, longeur * sizeof(char));
}
ligne[i++] = c;
c = fgetc(fichier);
if ((c == '\n') || (c == '\r'))
break;
}
ligne[i] = '\0';
while ((c == '\n') || (c == '\r'))
c = fgetc(fichier);
if (c != EOF)
ungetc(c,fichier);
if ((strlen(ligne) == 0) && (c == EOF))
{
free(ligne);
ligne = NULL;
}
}
return ligne;
}
//frees the TextRessources
void libererTexte()
{
if (ressourcesTexteLangue != NULL)
{
while (compteur--)
{
free(ressourcesTexteLangue[compteur].clef);
}
free(ressourcesTexteLangue);
}
}
//compares the keys
int comparerClef(const void* e1, const void* e2)
{
return strcmp(((texteLangue*) e1)->clef, ((texteLangue*) e2)->clef);
}
ressourcetextlelangue(TextResources)的结构如下:
typedef struct texteLangue {
char* clef;
char* valeur;
} texteLangue;
最佳答案
代码中有几个潜在的问题可能会导致您看到的错误报告。
这里有一个:
if (i == longeur)
应该是:
if ((i+1) == longeur)
否则,
ligne[i] = '\0';
在以下情况下可能发生
ligne[i++] = c;
已导致
i
等于longeur
。还有一个:
while (*ligne != '=')
{
ligne++;
}
*ligne = '\0';
上述代码应为:
while (*ligne != '=' && *ligne != '\0')
{
ligne++;
}
*ligne = '\0';
否则,在字符串中找不到
'='
时,将损坏内存。尽管这两种情况都可能导致你报告的症状,但我看到了一些其他的怪事,使我认为错误比我迄今看到的还要多。然而,解决这两个问题至少会减少你必须考虑的可能性。
关于c - 在C中检测到的堆腐败,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16468302/