Jiri Slaby
Jiri Slaby
openSUSE build system defines: ``` -DCMAKE_INSTALL_PREFIX:PATH=%{_prefix} -DCMAKE_INSTALL_LIBDIR:PATH=%{_lib} ``` where: ``` $ rpm -E '%{_prefix} XX %{_lib}' /usr XX lib64 ``` I.e. `CMAKE_INSTALL_LIBDIR` is relative. Which is perfectly fine -- in...
Commit a26083b634fe (Fixing libdirs for CMakeLists) switched from `${CMAKE_INSTALL_PREFIX}/lib` to `${CMAKE_INSTALL_LIBDIR}`. It fixed the issue with `lib` vs `lib64`. But while the former is absolute, the latter needs not. That...
It is declared as returning a bool, but returns nothing. But the callers expect something to be returned: true in case it succeeded. **Double check I got it right...**
It looks like the linking rework introduced a bug in later LLVM versions. LLVM 3.9 added a check if calls to inline functions contain debuginfo (cf. https://github.com/llvm-mirror/llvm/commit/522b700b9bdb32529b923cba196e0cd580267dfb). And if not,...
I wanted to give `--render-timing` a try: https://github.com/dvdhrm/kmscon/blob/0b3452719992f855b64fa21c9d7fbd6158a8d23a/src/kmscon_conf.c#L143-L145 But there is no such option, apparently: ```sh /usr/bin/kmscon --vt=tty1 --seats=seat0 --no-switchvt --render-timing Unknown argument: --render-timing ``` https://github.com/dvdhrm/kmscon/blob/0b3452719992f855b64fa21c9d7fbd6158a8d23a/src/kmscon_conf.c#L597-L601
When `_FORTIFY_SOURCE=2` is enabled during build, rsync crashes. gdb says: ``` #3 0x00007f2a31226917 in __GI_abort () at abort.c:79 #4 0x00007f2a312277e3 in __libc_message (fmt=fmt@entry=0x7f2a313b030c "*** %s ***: terminated\n") at ../sysdeps/posix/libc_fatal.c:150 #5...
Fortified (`-D_FORTIFY_SOURCE=2` for gcc) builds make `strlcpy()` crash when its third parameter (size) is larger than the buffer: ``` $ rsync -FFXHav '--filter=merge global-rsync-filter' Align-37-43/ xxx sending incremental file list...
**Describe the bug** The text I write to QSearchField in the top of the main window is misrendered as can be seen in the screenshot. **To Reproduce** * start strawberry...
**Describe the bug** In the syzkaller web, when I click on coverage, I get: ``` failed to generate coverage profile: found unexpected tag PartialUnit on top level ``` **Expected behavior**...
They were dropped in upstream in commit https://github.com/torvalds/linux/commit/a5d3df8ae13f (KVM: remove deprecated UAPIs).