Ted Lyngmo
Ted Lyngmo
Added a few explicit casts: unsigned char flags = (unsigned char)s[-1]; Signed-off-by: Ted Lyngmo
`asn_INTEGER2long()` sets a `long` to `-1` and leftshifts: ``` long l; // ... if((*b >> 7)) l = -1; else l = 0; /* Conversion engine */ for(; b <...
**Describe the bug** Doing multiple builds at the same time from the same source tree sporadically fails because "hiredis_features.h" is generated in the source tree. **To Reproduce** Make a massive...
Fixes #549
Move constructor: ``` * m_isValid (bool) exchange(rhs.m_isValid, true) * m_invalidKey (std::string) std::move() * m_pMemory (shared_memory_holder) std::move() * m_pNode (node*) exchange(rhs.m_pNode, nullptr) ``` This leaves the moved-from Node as if it...
### Is your feature request related to a problem? Please describe I'm always frustrated when a very wide error message requires me to scroll sideways, because the horizontal scrollbar is...
`reclaimFilePageCache` did not set `errno` but `rdbSaveInternal` which is logging the error assumed it did. This makes sure `errno` is set. Fixes #13245
**Describe the bug** `reclaimFilePageCache` doesn't set `errno`. As a consequence the logged error will be whatever `errno` was set to prior to the call. **To reproduce** 1. Set `errno =...
These changes were needed to just be able to compile it.