Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Iniciar sesión
Immanuel
/
nnn
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
0
Pull Requests
0
Lanzamientos
0
Wiki
Actividad
Explorar el Código
No need for a temporary buffer
xdirname() uses xstrdup() internally so we are safe to use that pointer directly.
master
sin
hace 10 años
padre
35f3b250bb
commit
9bc4b92474
Se han
modificado 1 ficheros
con
1 adiciones
y
3 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+1
-3
noice.c
+ 1
- 3
noice.c
Ver fichero
@@ -551,10 +551,8 @@ nochange:
goto nochange;
} else {
dir = xdirname(path);
tmp = xmalloc(strlen(dir) + 1);
strlcpy(tmp, dir, strlen(dir) + 1);
free(path);
path =
tmp
;
path = dir;
free(filter);
filter = xstrdup(ifilter); /* Reset filter */
/* Recall history */
Escribir
Vista previa
Cargando…
Cancelar
Guardar