Try to get rid of a Coverity warning by consistently using origpending.
diff --git a/Modules/cjkcodecs/multibytecodec.c b/Modules/cjkcodecs/multibytecodec.c
index 73689ef..340de18 100644
--- a/Modules/cjkcodecs/multibytecodec.c
+++ b/Modules/cjkcodecs/multibytecodec.c
@@ -735,7 +735,7 @@
 	datalen = PyUnicode_GET_SIZE(unistr);
 	origpending = ctx->pendingsize;
 
-	if (ctx->pendingsize > 0) {
+	if (origpending > 0) {
 		inbuf_tmp = PyMem_New(Py_UNICODE, datalen + ctx->pendingsize);
 		if (inbuf_tmp == NULL)
 			goto errorexit;