Explorar el Código

Update rcore.c

pull/2281/head
Ray hace 4 años
padre
commit
464026f15c
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/rcore.c

+ 1
- 1
src/rcore.c Ver fichero

@ -3261,7 +3261,7 @@ char *EncodeDataBase64(const unsigned char *data, int dataLength, int *outputLen
encodedData[j++] = base64encodeTable[(triple >> 0*6) & 0x3F];
}
for (int i = 0; i < modTable[dataLength%3]; i++) encodedData[*outputLength - 1 - i] = '=';
for (int i = 0; i < modTable[dataLength%3]; i++) encodedData[*outputLength - 1 - i] = '='; // Padding character
return encodedData;
}

Cargando…
Cancelar
Guardar