This is probably not the correct interpretation of this error.
The Win32 error above is more likely to indicate the actual problem.
Flags
Severity
Success
This code indicates success, rather than an error.
This may not be the correct interpretation of this code,
or possibly the program is handling errors incorrectly.
I want my Windows 7 machine to get its time from my Linux Debian Sid server. So I want ahead and installed OpenNTPD from the Debian repository. It doesn't listen to anything by default, so I configured it as follows: listen on 192.168.0.1 server 0.debian.pool.ntp.org server 1.debian.pool.ntp.org server 2.debian.pool.ntp.org server [...] read more
I have a data channel between my native webrtc application and a firefox browser. When I send a 200Kb image data from the native app to the firefox browser I get the following error: (sctpdataengine.cc:672): ERROR:SctpDataMediaChannel->SendData(...): usrsctp_sendv: : [0x0000005a] Message too long (datachannel.cc:580): Closing the DataChannel due to a failure [...] read more
I have this problem on my Samsung Galaxy Note 2 LTE with random reboots and kind of clean restarts in the kernel logs (no oops / panic, even though some usb errors) and now I got a kernel panic in the last_kmsg log. In this log I recognized 10 attempts [...] read more
I'm trying to get locale infos in NSIS (using this code). As my system is in french, I'd hope to get a string like "fr-FR", but I'm getting chineese synbols instead :/ output [https://i.stack.imgur.com/5aOjK.png] Any idea of what I'm doing wrong? !define LOCALE_ILANGUAGE '0x1' ;System Language Resource ID !define LOCALE_SLANGUAGE [...] read more
Am using libcurl to communicate with Amazon S3. GET calls are success whereas PUT (for uploading files) calls are failing with 403. PUT call with same headers when ran through CURL-CLI are success. I have disabled certificate checking. [[ curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0) ]] Using CURLOPT_DEBUGFUNCTION option as specified in https://curl.haxx.se/libcurl/c/CURLOPT_DEBUGFUNCTION.html, [...] read more
I'm analyzing a handle leak and memory leak in a Outlook plugin. I put my analysis step here, as I hardly have any c++ knowledge (Last time I used c++ is 7 years ago). After searching from Google, I used WinDbg's !htrace -diff command to find the handle leak. Also, [...] read more
I have used the OrientationEventListener which I have coupled with a Handler to update a TextView when the screen rotates: MainHandler handler; TextView tv; MyOrientationEventListener listener; class MainHandler extends Handler { @Override public void handleMessage(Message msg) { switch(msg.what) { case MSG_ORIENTATION: if(tv!=null) tv.setText(msg.arg1); break; default: if(tv!=null) tv.setText("Nothing to see here"); [...] read more
I am trying to figure out how to get to 0x0001556c offset of my application. This is the error that came in apphub: "Frame Image Function Offset 0 kernelbase RaiseException 0x00000036 1 msvcr110 _CxxThrowException 0x0000005a 2 windowsphone8program 0x0001556c" A C++ exception is being thrown, but I need to see what [...] read more
I am working on an outlook addin where we are using WPF user control embedded in a Windows form using ElementHost. This app crashes on only few machines intermittently.After analyzing crash dump,the WPF rendering thread seems to be causing this crash.The stack trace in the windbg looks like FAULTING_IP: msvcr80!memcpy+5a [...] read more
I have installed openldap on two machines and tried to setup multi-way replication.I am able to perform the multi-way replication (Add/Update/delete) when both the machines are up and ldap is running. But when my one machine goes down(server2) and records are added,deleted,modified on (server1) are not getting replicated on server2 [...] read more