View Single Post
Posts: 2,225 | Thanked: 3,822 times | Joined on Jun 2010 @ Florida
#5
Originally Posted by Estel View Post
Thanks for the tip - here is strace output, from the start of rtcom-call-ui, to the moment it closes itself with "yellow bar" internal error message:
http://pastebin.aquilenet.fr/?01c721...gJt0XTkyaWuHI=

What caught my (ignorant, I'm using those tools for the very first time ) eye is the line:

Code:
access("/etc/ld.so.preload", R_OK)      = -1 ENOENT (No such file or directory)
This is harmless. /etc/ld.so.preload is a special priviledged file that tells the linker what shared objects to load/link with everything being executed, more or less. It has a function similar to the envar LD_PRELOAD, except since /etc/ is traditionally writable only by root, the linker trusts this file more than the LD_PRELOAD variable. Anyway, when it's not there, nothing bad happens, and execution continues normally.

Here's a longer but still quick-ish explanation:
https://minipli.wordpress.com/2009/0...ld-so-preload/

That's all I got for now, sadly I have only limited experience reading those traces, and at any rate I have to go for the evening.
__________________
If you want to donate in support of anything that I do, you can do so with either of these options:
PayPal | Bitcoin: 1J4XG2z97iFEKNZXThHdFHq6AeyWEHs8BJ | [Will add other donation options eventually]
 

The Following 2 Users Say Thank You to Mentalist Traceur For This Useful Post: