Even that is too big, but it doesn't make make sense to use
_POSIX_PATH_MAX for the id string.
static FILE* msg_cache_get (IMAP_DATA* idata, HEADER* h)
{
- char id[_POSIX_PATH_MAX];
+ char id[SHORT_STRING];
if (!idata || !h)
return NULL;
static FILE* msg_cache_put (IMAP_DATA* idata, HEADER* h)
{
- char id[_POSIX_PATH_MAX];
+ char id[SHORT_STRING];
if (!idata || !h)
return NULL;
static int msg_cache_commit (IMAP_DATA* idata, HEADER* h)
{
- char id[_POSIX_PATH_MAX];
+ char id[SHORT_STRING];
if (!idata || !h)
return -1;
int imap_cache_del (IMAP_DATA* idata, HEADER* h)
{
- char id[_POSIX_PATH_MAX];
+ char id[SHORT_STRING];
if (!idata || !h)
return -1;