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
Don't attempt to go back if on the relative root
master
lostd
il y a 11 ans
Parent
8d4019f3aa
révision
9407399230
1 fichiers modifiés
avec
3 ajouts
et
1 suppressions
Vue séparée
Option de Diff
Voir les Statistiques
Télécharger le Fichier Patch
Télécharger le Fichier des Différences
+3
-1
noice.c
+ 3
- 1
noice.c
Voir le fichier
@@ -658,7 +658,9 @@ nochange:
return;
case SEL_BACK:
/* There is no going back */
if (strcmp(path, "/") == 0)
if (strcmp(path, "/") == 0 ||
strcmp(path, ".") == 0 ||
strchr(path, '/') == NULL)
goto nochange;
if (canopendir(path) == 0) {
printwarn();
Écrire
Aperçu
Chargement…
Annuler
Enregistrer