checking re: 0x00007ffff7a9d2d7 in __GI__IO_default_xsputn (f=0x7fffff7ff5d0, data=<optimized out>, n=40) at genops.c:429 429 genops.c: No such file or directory. in upstream sources cd glibc git branch -a | grep \* * (HEAD detached at origin/release/2.26/master) git describe glibc-2.26-237-g2b802d55b7 cat libio/genops.c ... _IO_size_t _IO_default_xsputn (_IO_FILE *f, const void *data, _IO_size_t n) { const char *s = (char *) data; _IO_size_t more = n; if (more <= 0) return 0; for (;;) { 429 /* Space available. */ if (f->_IO_write_ptr < f->_IO_write_end) { _IO_size_t count = f->_IO_write_end - f->_IO_write_ptr; if (count > more) count = more; if (count > 20) { #ifdef _LIBC ... -- To unsubscribe, e-mail: opensuse-kernel+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-kernel+owner@opensuse.org