radv/rra: Increase rra_validation_context::location

31 bytes aren't always enough for storing the string.

Reviewed-by: Natalie Vock <natalie.vock@gmx.de>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/35166>
This commit is contained in:
Konstantin Seurer 2025-05-26 16:28:06 +02:00 committed by Marge Bot
parent e62c464e4e
commit f33623ea5f

View file

@ -271,7 +271,7 @@ static_assert(sizeof(struct rra_geometry_info) == 12, "rra_geometry_info does no
struct rra_validation_context {
bool failed;
char location[31];
char location[63];
};
void PRINTFLIKE(2, 3) rra_validation_fail(struct rra_validation_context *ctx, const char *message, ...);