mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-02-02 11:33:21 +00:00
[BUILD] change declaration of base64tab to fix build with Intel C++
I got a report that Intel C++ complains about the size of the base64tab in base64.c. Setting it to 65 chars to allow for the trailing zero fixes the problem.
This commit is contained in:
parent
28c41a4041
commit
69e989ccbc
@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* Ascii to Base64 conversion as described in RFC1421.
|
* Ascii to Base64 conversion as described in RFC1421.
|
||||||
*
|
*
|
||||||
* Copyright 2006 Willy Tarreau <w@1wt.eu>
|
* Copyright 2006-2008 Willy Tarreau <w@1wt.eu>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU General Public License
|
* modify it under the terms of the GNU General Public License
|
||||||
@ -13,7 +13,7 @@
|
|||||||
#include <common/base64.h>
|
#include <common/base64.h>
|
||||||
#include <common/config.h>
|
#include <common/config.h>
|
||||||
|
|
||||||
const char base64tab[64]="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
|
const char base64tab[65]="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
|
||||||
|
|
||||||
/* Encodes <ilen> bytes from <in> to <out> for at most <olen> chars (including
|
/* Encodes <ilen> bytes from <in> to <out> for at most <olen> chars (including
|
||||||
* the trailing zero). Returns the number of bytes written. No check is made
|
* the trailing zero). Returns the number of bytes written. No check is made
|
||||||
|
Loading…
Reference in New Issue
Block a user