From 125131aea479a30c57c7e40a4d6116bc4b2ff813 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Mon, 15 Jun 2009 10:53:20 +0200 Subject: [PATCH] msctf/tests: Make EditSession_Constructor() static. --- dlls/msctf/tests/inputprocessor.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dlls/msctf/tests/inputprocessor.c b/dlls/msctf/tests/inputprocessor.c index c4be695dd27..90d698964b7 100644 --- a/dlls/msctf/tests/inputprocessor.c +++ b/dlls/msctf/tests/inputprocessor.c @@ -1479,10 +1479,11 @@ static const ITfEditSessionVtbl EditSession_EditSessionVtbl = EditSession_DoEditSession }; -HRESULT EditSession_Constructor(ITfEditSession **ppOut) +static HRESULT EditSession_Constructor(ITfEditSession **ppOut) { EditSession *This; + *ppOut = NULL; This = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,sizeof(EditSession)); if (This == NULL) return E_OUTOFMEMORY; -- 2.11.4.GIT