"value":"In the Linux kernel, the following vulnerability has been resolved:\n\nmm/slab: make __free(kfree) accept error pointers\n\nCurrently, if an automatically freed allocation is an error pointer that\nwill lead to a crash. An example of this is in wm831x_gpio_dbg_show().\n\n 171\tchar *label __free(kfree) = gpiochip_dup_line_label(chip, i);\n 172\tif (IS_ERR(label)) {\n 173\t\tdev_err(wm831x->dev, \"Failed to duplicate label\\n\");\n 174\t\tcontinue;\n 175 }\n\nThe auto clean up function should check for error pointers as well,\notherwise we're going to keep hitting issues like this."
"value":"En el kernel de Linux, se ha resuelto la siguiente vulnerabilidad: mm/slab: make __free(kfree) acepta punteros de error Actualmente, si una asignaci\u00f3n liberada autom\u00e1ticamente es un puntero de error que provocar\u00e1 un bloqueo. Un ejemplo de esto est\u00e1 en wm831x_gpio_dbg_show(). 171 caracteres *etiqueta __free(kfree) = gpiochip_dup_line_label(chip, i); 172 if (IS_ERR(etiqueta)) { 173 dev_err(wm831x->dev, \"Error al duplicar la etiqueta\\n\"); 174 contin\u00faan; 175 } La funci\u00f3n de limpieza autom\u00e1tica tambi\u00e9n deber\u00eda comprobar si hay indicadores de error; de lo contrario, seguiremos teniendo problemas como este."