This commit is contained in:
Yousha Aleayoub 2024-09-19 21:00:22 -03:00 committed by GitHub
commit c56da10876
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -35,8 +35,10 @@ static int selnl_msglen(int msgtype)
break;
default:
BUG();
pr_err("Unknown message type in selnl_msglen: %d\n", msgtype);
ret = -EINVAL; // Return an error code or appropriate default value
}
return ret;
}