From 772a8d39181a51d10aa8a3227475c693c83e8d87 Mon Sep 17 00:00:00 2001 From: Aleksandar Andrejevic Date: Mon, 4 May 2015 22:16:20 +0000 Subject: [PATCH] [FAST486] The parameter count is not pushed onto the stack for call gates. svn path=/trunk/; revision=67547 --- reactos/lib/fast486/common.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/reactos/lib/fast486/common.c b/reactos/lib/fast486/common.c index db1bfba7b5e..5bf0338cb22 100644 --- a/reactos/lib/fast486/common.c +++ b/reactos/lib/fast486/common.c @@ -1030,9 +1030,6 @@ Fast486CallGate(PFAST486_STATE State, } } - /* Push the parameter count */ - if (!Fast486StackPushInternal(State, GateSize, Gate->ParamCount)) return FALSE; - /* Push CS selector */ if (!Fast486StackPushInternal(State, GateSize, OldCs)) return FALSE;