Ben Wiederhake
Ben Wiederhake
This PR fixes several issues: - Basic functionality of `basenc` was not tested – it already works, yes, but let's make sure it doesn't regress. - `basenc` should not decide...
Credits go to the authors of codespell. Note that codespell also complains about `curch`, which stands for "current character", and thus probably should have been named `cur_ch`
Steps to reproduce: - Disconnect the machine in a way so that no component knows what happened. (In virtualbox: fiddle with the network settings, but make sure that the OS...
Originally reported at https://github.com/majn/telegram-purple/issues/98 All earlier discussion see there.
Specifically, `tglmp_on_start` (when no valid RSA keys were found) in `mtproto-client.c:1305` As there's no feedback from tgl about whether loading the key worked or not, the wrapping application has to...
Currently, these files take up the majority of compilation time.
While investigating a new bug, I noticed that tgl calls `.insert` before the old timer happened, and without calling `.remove` first. Here's a backtrace: http://pastebin.com/ihdTvwfc Here's my summary: - `tgl_timer_insert`...
I don't understand what the following line (currently at https://github.com/fabacab/git-archive-all.sh/blob/master/git-archive-all.sh#L242 ) attempted to achieve: ``` TREEISH=$(git submodule | grep "^ .*${path%/} " | cut -d ' ' -f 2) ```...
This PR enables calling (f)utime(n)s(at) in a special way that was not possible before. In particular, POSIX [specifies](https://pubs.opengroup.org/onlinepubs/9699919799/functions/utimensat.html) that when `times` is a nullptr, then utimensat only requires that the...
I understand that comparing numbers that are very similar might take a bit of time, as it might need to read all stored digits in the worst case. But certainly...