msctf: Correct index for being unable to pop last context. We need to leave one behind.
diff --git a/dlls/msctf/documentmgr.c b/dlls/msctf/documentmgr.c
index 4ffd0b6..e1e5b19 100644
--- a/dlls/msctf/documentmgr.c
+++ b/dlls/msctf/documentmgr.c
@@ -167,7 +167,7 @@
     if (dwFlags)
         return E_INVALIDARG;
 
-    if (This->contextStack[0] == NULL) /* Cannot pop last context */
+    if (This->contextStack[1] == NULL) /* Cannot pop last context */
         return E_FAIL;
 
     ITfThreadMgrEventSink_OnPopContext(This->ThreadMgrSink,This->contextStack[0]);