From d324bf1ed233cdd1e764fe049110483f90bc6e9e Mon Sep 17 00:00:00 2001 From: Ghislain MARY Date: Fri, 24 Jul 2015 11:22:18 +0200 Subject: [PATCH] Fix validation of Windows 10 app with the Windows Store App Certification Kit. --- coreapi/misc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coreapi/misc.c b/coreapi/misc.c index afa04f9bd..d94b170e3 100644 --- a/coreapi/misc.c +++ b/coreapi/misc.c @@ -266,7 +266,7 @@ bool_t linphone_core_check_payload_type_usability(LinphoneCore *lc, const Payloa } bool_t lp_spawn_command_line_sync(const char *command, char **result,int *command_ret){ -#if !defined(_WIN32_WCE) +#if !defined(_WIN32_WCE) && !defined(LINPHONE_WINDOWS_UNIVERSAL) FILE *f=popen(command,"r"); if (f!=NULL){ int err;