Dmitry Tsarevich

Results 33 issues of Dmitry Tsarevich

Does BOINC support C++11? For example, i want to fix undefined behavior (which may lead to security issues) when `printf`-like functions get incompatible format specifier and actual parameter type: https://github.com/BOINC/boinc/pull/3633...

P: Trivial
T: Task
C: Build System

* Do not leak `clocale` on `_create_locale` failed. * Add missed class member initializers to prevent UB on access to them. * Do not perform `string` -> `char*` -> `string`...

Suggest to rename net7mma_core to netmma_core as: * We use .net 8 now. * Naming over .net versions is not reliable :)

I've a bunch of input RTSP streams, and want to export them under single RTSP stream from RtspServer. For example `[rtsp://1, rtsp://2, rtsp://3]` exported as `rtsp://rtsp_server/uri`. Streams should be exported...

question

Common ```SDL_assert``` usage pattern is to check error codes like https://github.com/libsdl-org/SDL/blob/1ba99c53d48ec1f1f7c58b20326fc0c964ce5aa2/src/thread/pthread/SDL_sysmutex.c#L73-74: ``` const int rc = pthread_mutex_lock(&mutex->id); SDL_assert(rc == 0); ``` It would be nice to dump ```rc``` here, like:...

When you define function-like macro, you should: 0. Consider using ```{constexpr}``` function first, which does points below obsolete :) 1. Ensure side effects of N-times evaluation are expected: ``` #define...

* Out-of-bound read found by AddressSanitizer in Youtube upload dialog, ```CODEC_COUNT``` is ```10```, but ```s_Codecs``` length is ```1``` or ```2```: https://github.com/ValveSoftware/source-sdk-2013/blob/238a15a79dd2c3c151e98eea8b39e5f161a93703/src/game/client/replay/replayvideo.cpp#L31-L34 https://github.com/ValveSoftware/source-sdk-2013/blob/238a15a79dd2c3c151e98eea8b39e5f161a93703/src/game/client/replay/replayvideo.cpp#L50-L54 https://github.com/ValveSoftware/source-sdk-2013/blob/238a15a79dd2c3c151e98eea8b39e5f161a93703/src/game/client/replay/replayvideo.cpp#L128-L132 * Potential out of bounds read from...