mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 16:37:19 +09:00
locale: drop context_clear_x11()
It is used at only place, and mostly trivial. No functional change, just refactoring.
This commit is contained in:
@@ -154,13 +154,6 @@ int x11_context_copy(X11Context *dest, const X11Context *src) {
|
||||
return modified;
|
||||
}
|
||||
|
||||
static void context_clear_x11(Context *c) {
|
||||
assert(c);
|
||||
|
||||
x11_context_clear(&c->x11_from_xorg);
|
||||
x11_context_clear(&c->x11_from_vc);
|
||||
}
|
||||
|
||||
void vc_context_clear(VCContext *vc) {
|
||||
assert(vc);
|
||||
|
||||
@@ -235,7 +228,8 @@ void context_clear(Context *c) {
|
||||
assert(c);
|
||||
|
||||
locale_context_clear(&c->locale_context);
|
||||
context_clear_x11(c);
|
||||
x11_context_clear(&c->x11_from_xorg);
|
||||
x11_context_clear(&c->x11_from_vc);
|
||||
vc_context_clear(&c->vc);
|
||||
|
||||
c->locale_cache = sd_bus_message_unref(c->locale_cache);
|
||||
|
||||
Reference in New Issue
Block a user