Comment 5 for bug 1274199

Revision history for this message
Raghavendra D Prabhu (raghavendra-prabhu) wrote : Re: Attempt to match against an empty key

It crashes here:

        static size_t
        base_size (Version const ver,
                   const gu::byte_t* const buf, size_t const size)
        {
            switch (ver)
            {
            case FLAT16:
            case FLAT16A:
                return 16;
            case FLAT8:
            case FLAT8A:
                return 8;
            case EMPTY: assert(0);
            }

            abort();
        }