Projects STRLCPY neomutt Commits ca7934aa
🤬
  • fixed possible fail in mutt_date_parse_imap

    Obvious bug, this is supposed to be a string, but a struct is passed instead, fails on some uncommon calling conventions.
  • Loading...
  • Ilya Kurdyukov committed with Richard Russon 2 years ago
    ca7934aa
    1 parent 583faeaa
  • ■ ■ ■ ■
    test/date/mutt_date_parse_imap.c
    skipped 57 lines
    58 58   {
    59 59   for (size_t i = 0; i < mutt_array_size(imap_tests); i++)
    60 60   {
    61  - TEST_CASE(imap_tests[i]);
     61 + TEST_CASE(imap_tests[i].str);
    62 62   time_t result = mutt_date_parse_imap(imap_tests[i].str);
    63 63   if (!TEST_CHECK(result == imap_tests[i].expected))
    64 64   {
    skipped 7 lines
Please wait...
Page is in error, reload to recover