On Sun, Jun 01, 2014 at 11:00:40AM +0200, René Scharfe wrote:
> The array header is defined as:
>
> static const char *header[MAX_HDR_PARSED] = {
>"From","Subject","Date",
> };
>
> When looking for the index of a specfic string in that array, simply
> use strcmp() instead
The array header is defined as:
static const char *header[MAX_HDR_PARSED] = {
"From","Subject","Date",
};
When looking for the index of a specfic string in that array, simply
use strcmp() instead of memcmp(). This avoids running over the end of
the string (e.g. with
2 matches
Mail list logo