Jørgen Tjernø

Results 38 issues of Jørgen Tjernø

This helps because IOError does not assign `message', but **str** prints both the path and the error that occurred. Old behavior: ``` $ bin/1pass foo 1pass: Error: ``` New behavior:...

When plaintext is already aligned to a 16 byte boundary, 1Password appends a full block of "0x10." There's an off by one error, where we do not handle that case....

This allows you to use 1PasswordAnywhere keychains with 1pass.

When running Tracy + ASan on our project, we get a buffer overflow in Tracy a few seconds after we open the "Memory" panel on the Tracy server. It runs...

I've got an application where the main frame loop is running at a fixed frequency (10Hz, in this case). We intentionally run a "sleep" every frame if the main workload...

enhancement
awaiting response

Instead of directly calling `printf` and `exit`, use `yojimbo_printf` and `yojimbo_assert` in the leak detection in `Allocator::~Allocator`. This helps integrate better with client applications. Also switch the `default_assert_handler` to use...

- Fix the assert that triggers if you only intermittently send reliable messages - Clean up the `acked` field which isn't being used

The wiki currently only has [placeholder content](https://github.com/elnormous/ouzel/wiki/Documentation).

The following code will never terminate (until it runs out of memory): ```rust fn main() { if let Ok(key) = winreg::RegKey::predef(HKEY_CURRENT_USER) .open_subkey_with_flags(r"SOFTWARE\Classes\tel", winreg::enums::KEY_SET_VALUE) { let _: Vec = key.enum_values().collect(); }...