Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5e160e16 authored by Haixia Shi's avatar Haixia Shi Committed by Android (Google) Code Review
Browse files

Merge "libgui: Fix missing va_end in Surface::hook_perform()"

parents 6ffcb009 d89c2bb6
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -184,7 +184,9 @@ int Surface::hook_perform(ANativeWindow* window, int operation, ...) {
    va_list args;
    va_start(args, operation);
    Surface* c = getSelf(window);
    return c->perform(operation, args);
    int result = c->perform(operation, args);
    va_end(args);
    return result;
}

int Surface::setSwapInterval(int interval) {