From a1937e679f76758635d295287398abe526de2522 Mon Sep 17 00:00:00 2001 From: David Herrmann Date: Tue, 25 Feb 2014 12:20:25 +0100 Subject: login: fix pos-array allocation GREEDY_REALLOC takes a pointer to the real size, not the array-width as argument. Therefore, our array is currently way to small to keep the seat positions. Introduce GREEDY_REALLOC0_T() as typed version of GREEDY_REALLOC and store the array-width instead of array-size. --- src/login/logind-seat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/login') diff --git a/src/login/logind-seat.c b/src/login/logind-seat.c index 631be5f740..36ec7ed757 100644 --- a/src/login/logind-seat.c +++ b/src/login/logind-seat.c @@ -475,7 +475,7 @@ void seat_claim_position(Seat *s, Session *session, unsigned int pos) { if (seat_has_vts(s)) pos = session->vtnr; - if (!GREEDY_REALLOC0(s->positions, s->position_count, pos + 1)) + if (!GREEDY_REALLOC0_T(s->positions, s->position_count, pos + 1)) return; seat_evict_position(s, session); -- cgit v1.2.3-54-g00ecf