mirror of
https://github.com/mpv-player/mpv
synced 2024-10-30 04:46:41 +01:00
fa2d1c9a69
- assert that the override param is nonzero (zero is not implemented) - correct return value type to int based on a patch by Diego fixes bugzilla bug #342 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17246 b3059339-0415-0410-9bf9-f77b7e298cf2
30 lines
488 B
C
30 lines
488 B
C
/* setenv implementation for systems lacking it. */
|
|
|
|
#include "../config.h"
|
|
|
|
#ifndef HAVE_SETENV
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#ifndef MP_DEBUG
|
|
#define NDEBUG
|
|
#endif
|
|
#include <assert.h>
|
|
|
|
int setenv(const char *name, const char *val, int overwrite)
|
|
{
|
|
int len = strlen(name) + strlen(val) + 2;
|
|
char *env = malloc(len);
|
|
if (!env) { return -1; }
|
|
|
|
assert(overwrite != 0);
|
|
|
|
strcpy(env, name);
|
|
strcat(env, "=");
|
|
strcat(env, val);
|
|
putenv(env);
|
|
|
|
return 0;
|
|
}
|
|
#endif
|