rpcrt4: Constify a character string.

oldstable
Frédéric Delanoy 2013-12-17 22:17:40 +01:00 committed by Alexandre Julliard
parent 1c972c5987
commit 44c1ba9f9e
1 changed files with 1 additions and 1 deletions

View File

@ -2383,7 +2383,7 @@ static RPC_STATUS rpcrt4_http_prepare_out_pipe(HINTERNET out_request, RpcHttpAsy
static UINT encode_base64(const char *bin, unsigned int len, WCHAR *base64)
{
static char enc[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
static const char enc[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
UINT i = 0, x;
while (len > 0)