Commit fd229dae authored by Warren Dukes's avatar Warren Dukes

maybe this fixes something ?

git-svn-id: https://svn.musicpd.org/mpd/trunk@1594 09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent cdb67649
......@@ -121,8 +121,8 @@ void inputStream_initHttp() {
static char * base64Dup(char * s) {
int i;
int len = strlen(s);
char * ret = malloc(BASE64_LENGTH(len)+1);
char * p = ret;
char * ret = calloc(BASE64_LENGTH(len)+1, 1);
unsigned char * p = (unsigned char *)ret;
char tbl[64] = {
'A','B','C','D','E','F','G','H',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment