Commit 187c0e67c0b1ed61a0cf248f09c8a12326c2a92c
1 parent
3454da11
ajout images pour le readme et fichier .gitignore, fix dernier bug_mémoire
Showing
5 changed files
with
3 additions
and
1 deletions
Show diff stats
dictionnaire.c
... | ... | @@ -118,7 +118,7 @@ bool importer_dict(const char *nom_dic) |
118 | 118 | Noeud *prochain_noeud_vide = reserve_noeuds; |
119 | 119 | |
120 | 120 | // On transfère le fichier depuis un stream dans un tableau |
121 | - char *buffer = malloc(taille_fic); // +1 pour le caractere de terminaison | |
121 | + char *buffer = malloc(taille_fic+1); // +1 pour le caractere de terminaison | |
122 | 122 | fread(buffer, 1, taille_fic, dict); |
123 | 123 | |
124 | 124 | // Marque la fin du fichier | ... | ... |
93.5 KB
89.4 KB
197 KB