Ce site fonctionne mieux avec JavaScript.
Accueil
Explorateur
Aide
Connexion
Immanuel
/
nnn
Suivre
1
Ajouter aux favoris
0
Bifurcation
0
Code
Tickets
0
Demandes d'ajout
0
Versions
0
Wiki
Activité
Parcourir la source
Fix double free when starting in list mode
master
Arun Prakash Jana
il y a 5 ans
Parent
a563c1a553
révision
4c18f22587
Aucune clé connue n'a été trouvée dans la base pour cette signature
ID de la clé GPG:
A75979F35C080412
1 fichiers modifiés
avec
3 ajouts
et
1 suppressions
Vue unifiée
Option de Diff
Voir les Statistiques
Télécharger le Fichier Patch
Télécharger le Fichier des Différences
+3
-1
src/nnn.c
+ 3
- 1
src/nnn.c
Voir le fichier
@@ -4236,7 +4236,9 @@ static void rmlistpath()
DPRINTF_S(__FUNCTION__);
DPRINTF_S(__FUNCTION__);
DPRINTF_S(listpath);
DPRINTF_S(listpath);
spawn("rm -rf", listpath, NULL, NULL, F_NOTRACE | F_MULTI);
spawn("rm -rf", listpath, NULL, NULL, F_NOTRACE | F_MULTI);
free(listpath);
/* Do not free if program was started in list mode */
if (listpath != initpath)
free(listpath);
listpath = NULL;
listpath = NULL;
}
}
}
}
Écrire
Aperçu
Chargement…
Annuler
Enregistrer