ladybird/Userland
Emanuele Torre 191566fc97 LibJS: Avoid potential signed integer overflow in CyclicModule.cpp
`auto count = 0;` will declare `count` as a `signed int`.

We don't want that since `count` is used to count the occurence of an
element in an `AK::Vector` that can have up to `SIZE_MAX` elements;
`SIZE_MAX` can overflow a `signed int` more than 4 billion times.
2022-01-22 10:38:41 +01:00
..
Applets Userland: Add horizontal mouse scroll support 2022-01-20 10:37:52 +01:00
Applications Spreadsheet: Enable dynamic import of javascript modules 2022-01-22 01:21:18 +00:00
Demos Userland: Add horizontal mouse scroll support 2022-01-20 10:37:52 +01:00
DevTools LibJS: Refactor interpreter to use Script and Source Text Modules 2022-01-22 01:21:18 +00:00
DynamicLoader Toolchain+Meta: Update LLVM version to 13.0.0 2021-10-17 17:09:58 +01:00
Games Snake: Add link to help pages in menu 2022-01-13 03:45:17 -08:00
Libraries LibJS: Avoid potential signed integer overflow in CyclicModule.cpp 2022-01-22 10:38:41 +01:00
Services RequestServer+AK: Move happy-path logging behind REQUESTSERVER_DEBUG 2022-01-22 01:28:01 +00:00
Shell Shell: Make Juxtaposition autocompletion smarter 2022-01-21 18:58:28 +03:30
Utilities Utilities+Lagom: Remove test-crypto 2022-01-22 01:44:05 +00:00
CMakeLists.txt Tests: Establish root Tests directory, move Userland/Tests there 2021-05-06 17:54:28 +02:00