fix malloc leak + make the code compile
This commit is contained in:
parent
7c3e0c1b30
commit
f90657efaf
1 changed files with 10 additions and 0 deletions
10
arbre.c
10
arbre.c
|
@ -98,6 +98,16 @@ void compression(FILE *entree, FILE *sortie) {
|
|||
|
||||
// On écrit les données huffman-isée dans le fichier
|
||||
huffmanVersFichier(entree, sortie, enteteListe, nombreLettresDansFichier);
|
||||
|
||||
free(enteteListe); // libération de la liste car utilisation du malloc dans `arbreVersListe`
|
||||
}
|
||||
|
||||
void enteteVersFichier(Entete *enteteListe, int nombreLettresDansFichier, int longueurTotale, FILE *fichier) {
|
||||
return;
|
||||
}
|
||||
|
||||
void huffmanVersFichier(FILE *entree, FILE *sortie, Entete *enteteListe, int nombreLettresDansFichier) {
|
||||
return;
|
||||
}
|
||||
|
||||
void decompression(FILE *entree, FILE *sortie) {
|
||||
|
|
Reference in a new issue