Explorar el Código

Fixed possible NULL-deref and removed unnecessary XOpenDisplay()

- Added a check for the return value of XOpenDisplay() in main().
  This fixes a possible NULL-deref.
- Removed unnsecessary XOpenDisplay and XCloseDisplay from
  keyboard_indicators(). The ones in main() are sufficent.
master
Aaron Marcher hace 7 años
padre
commit
6f01174392
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: 74B048E5C2474F9A
Se han modificado 1 ficheros con 5 adiciones y 2 borrados
  1. +5
    -2
      slstatus.c

+ 5
- 2
slstatus.c Ver fichero

@@ -380,10 +380,9 @@ kernel_release(void)
static const char *
keyboard_indicators(void)
{
Display *dpy = XOpenDisplay(NULL);
XKeyboardState state;

XGetKeyboardControl(dpy, &state);
XCloseDisplay(dpy);

switch (state.led_mask) {
case 1:
@@ -879,6 +878,10 @@ main(int argc, char *argv[])

if (!sflag) {
dpy = XOpenDisplay(NULL);
if (!dpy) {
fprintf(stderr, "slstatus: cannot open display");
exit(1);
}
}

setlocale(LC_ALL, "");


Cargando…
Cancelar
Guardar