| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2026-02-20 | symlinks: use unsigned int for flags | Tian Yuchen | |
| The 'flags' and 'track_flags' fields in symlinks.c are used strictly as a collection of bits (using bitwise operators including &, |, ~). Using a signed integer for bitmasks may lead to undefined behavior with shift operations and logic errors if the MSB is touched. Change these fields from 'int' to 'unsigned int' to match our usage patterns. Signed-off-by: Tian Yuchen <a3205153416@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com> | |||
| 2023-04-24 | symlinks.h: move declarations for symlinks.c functions from cache.h | Elijah Newren | |
| Signed-off-by: Elijah Newren <newren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com> | |||
