From 33c528188de8b229bccfcf945f2e1d9daf153842 Mon Sep 17 00:00:00 2001 From: Michael Stefaniuc Date: Wed, 24 Nov 2010 00:37:32 +0100 Subject: [PATCH] msvcrt: Add missing dereference of the time pointer. --- dlls/msvcrt/time.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/msvcrt/time.c b/dlls/msvcrt/time.c index 7ccdc7dca16..41501566f23 100644 --- a/dlls/msvcrt/time.c +++ b/dlls/msvcrt/time.c @@ -913,7 +913,7 @@ int CDECL MSVCRT__ctime64_s(char *res, MSVCRT_size_t len, const MSVCRT___time64_ return MSVCRT_EINVAL; } res[0] = '\0'; - if( !MSVCRT_CHECK_PMT( time != NULL ) || !MSVCRT_CHECK_PMT( time > 0 ) ) + if( !MSVCRT_CHECK_PMT( time != NULL ) || !MSVCRT_CHECK_PMT( *time > 0 ) ) { *MSVCRT__errno() = MSVCRT_EINVAL; return MSVCRT_EINVAL; @@ -946,7 +946,7 @@ int CDECL MSVCRT__ctime32_s(char *res, MSVCRT_size_t len, const MSVCRT___time32_ return MSVCRT_EINVAL; } res[0] = '\0'; - if( !MSVCRT_CHECK_PMT( time != NULL ) || !MSVCRT_CHECK_PMT( time > 0 ) ) + if( !MSVCRT_CHECK_PMT( time != NULL ) || !MSVCRT_CHECK_PMT( *time > 0 ) ) { *MSVCRT__errno() = MSVCRT_EINVAL; return MSVCRT_EINVAL;