Module: wine Branch: master Commit: 2a48ef1d0996cfaed55ff7a3c334581a7f33d334 URL: http://source.winehq.org/git/wine.git/?a=commit;h=2a48ef1d0996cfaed55ff7a3c3...
Author: Alexandre Julliard julliard@winehq.org Date: Thu May 14 20:09:53 2009 +0200
mlang: Return the correct count in IMLangFontLink_GetStrCodePages when aborting early.
---
dlls/mlang/mlang.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/mlang/mlang.c b/dlls/mlang/mlang.c index d627cfd..5deb87b 100644 --- a/dlls/mlang/mlang.c +++ b/dlls/mlang/mlang.c @@ -1939,7 +1939,7 @@ static HRESULT WINAPI fnIMLangFontLink_GetStrCodePages( }
if (pdwCodePages) *pdwCodePages = cps; - if (pcchCodePages) *pcchCodePages = i; + if (pcchCodePages) *pcchCodePages = min( i + 1, cchSrc ); return S_OK; }