From 81434aabff472dd1797d3ee479f0ad67ef694884 Mon Sep 17 00:00:00 2001 From: Piotr Caban Date: Thu, 8 Dec 2011 12:09:28 +0100 Subject: [PATCH] msvcp90: Added _Locinfo::_Getlconv implementation. --- dlls/msvcp90/locale.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/msvcp90/locale.c b/dlls/msvcp90/locale.c index ae270aea91..4e9e5a0877 100644 --- a/dlls/msvcp90/locale.c +++ b/dlls/msvcp90/locale.c @@ -969,8 +969,8 @@ const char* __thiscall _Locinfo__Gettrue(const _Locinfo *this) DEFINE_THISCALL_WRAPPER(_Locinfo__Getlconv, 4) const struct lconv* __thiscall _Locinfo__Getlconv(const _Locinfo *this) { - FIXME("(%p) stub\n", this); - return NULL; + TRACE("(%p)\n", this); + return localeconv(); } /* ?_Getname@_Locinfo@std@@QBE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@2@XZ */ -- 2.32.0.93.g670b81a890