1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2024-12-22 13:33:56 +03:00

locale: drop unnecessary allocation

Fixes a bug introduced by 3d36b5d7e7.

Fixes #23777.
This commit is contained in:
Yu Watanabe 2022-06-18 11:06:46 +09:00 committed by Luca Boccassi
parent 297cc64bfb
commit e83cfbf972

View File

@ -152,10 +152,6 @@ static int property_get_locale(
if (r < 0)
return r;
l = new0(char*, _VARIABLE_LC_MAX+1);
if (!l)
return -ENOMEM;
r = locale_context_build_env(&c->locale_context, &l, NULL);
if (r < 0)
return r;