Mercurial > mplayer.hg
view osdep/setenv.c @ 19940:fb2063eaa445
Fix width -> orig_width typo causing subtitles to be too far to the right
for movies with vertical black bars (aspect < monitoraspect).
author | reimar |
---|---|
date | Fri, 22 Sep 2006 20:47:08 +0000 |
parents | 44c24de55f9d |
children | d0d487227d60 |
line wrap: on
line source
/* 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