Files
neovim/src
Marco Hinz 72ad5a16e7 Fix String_eq() (#5051)
Change implementation to compare sequences of bytes instead of C
strings.

The former implementation would return "false positives" in these cases:

"\0a" and "\0b": C strings are NUL-terminated, so it would compare two
                 empty strings.

"a" and "ab":    If both strings aren't the same length, it would
                 compare only up to the length of the shorter one.

Fixes #5046.
2016-07-12 22:16:43 -04:00
..
2016-07-12 22:16:43 -04:00
2016-06-03 14:15:36 -04:00
2016-03-02 23:56:38 -05:00
2016-06-03 14:15:36 -04:00
2016-06-24 17:16:11 +03:00
2016-06-03 14:15:36 -04:00