Issue 1666 in miranda: Miranda IM hangs randomly due to Jabber plugin

23 views
Skip to first unread message

mir...@googlecode.com

unread,
Nov 20, 2012, 1:37:57 PM11/20/12
to miranda...@googlegroups.com
Status: New
Owner: ----
Labels: Type-Bug Priority-Medium

New issue 1666 by asko.ero...@gmail.com: Miranda IM hangs randomly due to
Jabber plugin
http://code.google.com/p/miranda/issues/detail?id=1666

Miranda Version : v0.10.0.6
Unicode Build : Yes
Test Build # (if applicable) :
Plugin Version # (if applicable) : 0.10.0.0

I'am not 100% sure where the problem is, but I downloaded the Miranda
source package (v0.10.8) and ran the miranda in debugger few days. Finally
when I got it hanging, it seems like some kind of deadlock. Main thread is
blocked in "int CJabberProto::ListFindNext( JABBER_LIST list, int
fromOffset )" function at the EnterCriticalSection line. If someone could
guide me what to look at, I could investigate it a bit deeper. I tried to
do mem dump, but VS2010 express doesn't seem to support it. There are bunch
of other threads which are waiting some event, so I cant be sure what might
be the root cause of the problem. I'm using google talk with the jabber
plugin and I have replicated the issue with another computer as well.

What steps will reproduce the problem?
1. Keep Miranda online and the hang migth occure sometimes. Maybe twice in
a week :(


What is the expected result?
Miranda not to hang.

What happens instead?
It hangs, quite rarely, but it does.



Attachments:
VersionInfo.txt 4.0 KB

mir...@googlecode.com

unread,
Nov 30, 2012, 2:36:06 PM11/30/12
to miranda...@googlegroups.com

Comment #1 on issue 1666 by benjamin...@gmail.com: Miranda IM hangs
I've been noticing a lot of crashes lately. Crash dumper points at Jabber
as the crash reason. I've been noticing this happen several times a week,
and more than five times in the past twenty minutes now.

Only Jabber is connected. Would a minidump help analyse the problem? If so,
I can provide plenty. :)

mir...@googlecode.com

unread,
Dec 28, 2012, 9:26:16 AM12/28/12
to miranda...@googlegroups.com

Comment #2 on issue 1666 by dmitry....@gmail.com: Miranda IM hangs randomly
This sort of bugs are increasing while CPU count in typical PC rises and
race conditions/contentions arise with more and more parallel execution.
Exactly the same Miranda hang this style never on my 1-core old netbook,
once per 3-6 months on 2-core notebook, and it become hell of once per 3-5
days on my new modern 6-core CPU.
This actually can be almost completely mitigated by setting Miranda process
affinity to single CPU. It can be done using Sysinternals Process Explorer
for example, or automated somehow, there are tools around for setting that.
It definitely helps at lease for me, on my machines it stopped these types
of hangs completely (tested for 3 weeks for now). The source of this "fix"
is from our server software experience (we are hosting ISP) where affinity
also helps for incorrect multithread programming.

mir...@googlecode.com

unread,
Jan 4, 2013, 9:02:43 AM1/4/13
to miranda...@googlegroups.com

Comment #3 on issue 1666 by dmitry....@gmail.com: Miranda IM hangs randomly
Two threads deadlock with the following stack:

ntdll.dll!_NtWaitForSingleObject@12 () Unknown
ntdll.dll!_RtlpWaitOnCriticalSection@8 () Unknown
ntdll.dll!_RtlpEnterCriticalSectionContended@4 () Unknown
ntdll.dll!_RtlEnterCriticalSection@4 () Unknown
jabber.dll!CJabberProto::ListGetItemPtr(JABBER_LIST list, const wchar_t *
jid) Line 434 C++
jabber.dll!CJabberProto::JabberGetAvatarInfo(unsigned int wParam, long
lParam) Line 159 C++
miranda32.exe!CallService(const char * name, unsigned int wParam, long
lParam) Line 710 C++
miranda32.exe!MyCallProtoService(const char * szModule, const char *
szService, unsigned int wParam, long lParam) Line 33 C++
miranda32.exe!CallProtoServiceInt(void * hContact, const char * szModule,
const char * szService, unsigned int wParam, long lParam) Line 625 C++
miranda32.exe!CallProtoService(const char * szModule, const char *
szService, unsigned int wParam, long lParam) Line 309 C++
avs.dll!FetchAvatarFor(void * hContact, char * szProto) Line 248 C++
avs.dll!RequestThread(void * vParam) Line 302 C++
miranda32.exe!forkthread_r(void * arg) Line 222 C++
msvcr110d.dll!_callthreadstart() Line 255 C
msvcr110d.dll!_threadstart(void * ptd) Line 239 C
kernel32.dll!@BaseThreadInitThunk@12 () Unknown
ntdll.dll!___RtlUserThreadStart@8 () Unknown
ntdll.dll!__RtlUserThreadStart@8 () Unknown

and

ntdll.dll!_NtWaitForSingleObject@12 () Unknown
ntdll.dll!_RtlpWaitOnCriticalSection@8 () Unknown
ntdll.dll!_RtlpEnterCriticalSectionContended@4 () Unknown
ntdll.dll!_RtlEnterCriticalSection@4 () Unknown
jabber.dll!CJabberProto::ListGetItemPtr(JABBER_LIST list, const wchar_t *
jid) Line 434 C++
jabber.dll!CJabberProto::UserIsTyping(void * hContact, int type) Line
1553 C++
miranda32.exe!CallProtoServiceInt(void * hContact, const char * szModule,
const char * szService, unsigned int wParam, long lParam) Line 532 C++
miranda32.exe!CallProtoService(const char * szModule, const char *
szService, unsigned int wParam, long lParam) Line 309 C++
miranda32.exe!Proto_SelfIsTyping(unsigned int wParam, long lParam) Line
278 C++
miranda32.exe!CallService(const char * name, unsigned int wParam, long
lParam) Line 712 C++
PopUpW.dll!5555f0cf() Unknown
[Frames below may be incorrect and/or missing, no symbols loaded for
PopUpW.dll]
riched20.dll!CTxtEdit::GetTextLengthEx(struct _gettextlengthex *) Unknown
riched20.dll!_RichEditWndProc@16 () Unknown
user32.dll!_InternalCallWinProc@20 () Unknown
user32.dll!_UserCallWinProcCheckWow@36 () Unknown

I am still in debug, so I'll try to figure out exact reason (critical
section ordering seems wrong here).

mir...@googlecode.com

unread,
Jan 4, 2013, 9:29:32 AM1/4/13
to miranda...@googlegroups.com

Comment #4 on issue 1666 by dmitry....@gmail.com: Miranda IM hangs randomly
Sorry, no, both threads obtained lock in solid way and seems to be waiting
for some critical section owned by 3d thread for which I have no stack
available even in debug build (???). I'll try to figure it our with other
build options.

mir...@googlecode.com

unread,
Jan 4, 2013, 10:18:30 AM1/4/13
to miranda...@googlegroups.com

Comment #5 on issue 1666 by dmitry....@gmail.com: Miranda IM hangs randomly
I've reproduced the bug in debugger again and once again I see no code
available for thread owning this section (I am running debug build from
source). I do not understand what exactly it means.
I also see no other locks to m_csLists except in jabber_list.cpp, and all
locks in jabber_list.cpp seems valid (except external lock()/unlock(), but
I've tried to trace look through their possible usage and also no luck in
manual exploration).

For now I've rewritten ListGetItemPtr to optimistic locking using
TryEnterCriticalSection loop & waits and added some debug. Not exactly the
solution (dirty trick) but may help.
Maybe I'll return with some definite results here, but I feel that real
Miranda developer should address this issue.

In shourt, there is some deadlonck on m_csLists in jabber_list.cpp.

mir...@googlecode.com

unread,
Jan 16, 2013, 10:57:04 AM1/16/13
to miranda...@googlegroups.com

Comment #6 on issue 1666 by dmitry....@gmail.com: Miranda IM hangs randomly
One more deadlock in debugger. Critical section m_csLists indicats
LockCount -10 and thread ID that seems valid (handle somewhere in between
valid threads), but is no longer present (exited).
According to
http://msdn.microsoft.com/en-us/library/windows/hardware/ff541979(v=vs.85).aspx,
LockCount -10 means
1) section locked,
2) 2 more threads waiting to enter (I see both).

I've searched all the code again looking for Enter without Leave or Leave
without Enter, no luck. Not a big deal anyway because lock domains for
m_csLists are short and simple.
Another possibility is that somebody corrupts CriticalSection object, but I
will never find it. And because all fields sound really realistic, I do not
think that it is the case.

Miranda is not usable in current state; we seem to keep online, so Jabber
server successfully sends messages, we just ignore them, so we just loose
messages and contact with people.
Any ideas?


mir...@googlecode.com

unread,
Jan 16, 2013, 11:06:56 AM1/16/13
to miranda...@googlegroups.com

Comment #7 on issue 1666 by dmitry....@gmail.com: Miranda IM hangs randomly
Luck is back here, I've found the thread in Miranda log.

...
[18:27:21 dm...@in-solve.ru] Dropping the idle switchboard due to inactivity
[18:27:21 dm...@in-solve.ru] (0DA62E70:2232) Data sent
OUT
[18:27:21 dm...@in-solve.ru] Connection closed gracefully
[18:27:21 dm...@in-solve.ru] Connection 0DA62E70 [00002EF0] was gracefully
closed
[18:27:21 dm...@in-solve.ru] Thread [00002EF0] ending now
[18:27:21 dm...@in-solve.ru] Leaving thread 00002EF0 (08DE1B45)
[18:27:21 dm...@in-solve.ru] Closing connection handle 0DA62E70
[18:27:21 dm...@in-solve.ru] (0DA62E70:2232) Connection closed internal
[18:27:21 dm...@in-solve.ru] (0DA62E70:4294967295) Connection closed
[18:27:22 ICQ] Info-Update: Request 0x21a0 still in progress.

The thread 00002EF0 is one owning critical section. Things are getting more
clear. I'll post update shortly.

mir...@googlecode.com

unread,
Jan 16, 2013, 11:14:58 AM1/16/13
to miranda...@googlegroups.com

Comment #8 on issue 1666 by dmitry....@gmail.com: Miranda IM hangs randomly
00002EF0 is MSN thread. ???

mir...@googlecode.com

unread,
Jan 16, 2013, 11:16:58 AM1/16/13
to miranda...@googlegroups.com

Comment #9 on issue 1666 by dmitry....@gmail.com: Miranda IM hangs randomly
Sorry, messed up threads.

The right cause is here:

7:10:34 JABBER] presence: for jid r...@1gb.ua/climm
7:10:34 JABBER] JabberUpdateMirVer: for rc climm:
http://www.climm.org/xmpp/caps#0.7.1
7:10:34 JABBER] JabberUpdateJidDbSettings: updating jid r...@1gb.ua to rc
climm
7:10:34 JABBER] JabberUpdateMirVer: for rc climm:
http://www.climm.org/xmpp/caps#0.7.1
7:10:34 JABBER] rin ( r...@1gb.ua/climm ) online, set contact status to
Online
7:10:34 JABBER] Avatar enabled
7:10:34 JABBER] Not hasXAvatar
7:10:34 ICQ] Info-Update: Request 0x2159 still in progress.
7:10:34 JABBER] (0D99B7A8:1928) Data received
resence from='te...@1gb.ru/IM+ Android' to='dm...@in-solve.ru/Miranda'
type='unavailable'><priority>0</priority><x
xmlns='vcard-temp:x:update'><photo>4f14f7218>
7:10:34 JABBER] recvResult = 213
7:10:34 JABBER] bytesParsed = 213
7:10:34 JABBER] JabberUpdateMirVer: for jid te...@1gb.ru
7:10:34 (NULL)] Unhandled exception in thread 29f8



mir...@googlecode.com

unread,
Jan 16, 2013, 11:23:59 AM1/16/13
to miranda...@googlegroups.com

Comment #10 on issue 1666 by dmitry....@gmail.com: Miranda IM hangs
Poor design that unhandled exception leaves section locked; anyway, I've
breakpointed all unhandled exception handlers and thus will debug
JabberUpdateMirVer.
See you later when this thing crashes again.

mir...@googlecode.com

unread,
Jan 17, 2013, 7:23:00 AM1/17/13
to miranda...@googlegroups.com

Comment #11 on issue 1666 by the.q...@gmail.com: Miranda IM hangs randomly
Having the same issue, Miranda randomly hangs when sending a jabber (gtalk)
message. After killing the processes and restarting it the sent message is
not found in history, and the receiver did not get it.

This bug is preventing me from using Miranda. I think it should have a
higher priority.
Thanks for looking into this dmitry! Hope you find a solution.

mir...@googlecode.com

unread,
Jan 17, 2013, 7:30:31 AM1/17/13
to miranda...@googlegroups.com

Comment #12 on issue 1666 by dmitry....@gmail.com: Miranda IM hangs
You should enable "network" debug log into file. I think your bug may not
be related to the thing we discuss here, but if you find "Unhandled
exception in thread" in the log, then, we may thing about some general
solution for this problem.
I am not sure that I may analyze of fix everything that crashes Jabber
thread. Miranda have no ways to continue normal operation when Jabber
thread (or another protocol thread) chrashes. Theoretically Jabber thread
should not crash, and there is no generic fix for this issue. My parcitular
bug seems to be a invalid memory referencing bug in secondary subroutine,
not a deadlock issue, so it cannot be addressed in it’s general form.


mir...@googlecode.com

unread,
Jan 17, 2013, 7:32:31 AM1/17/13
to miranda...@googlegroups.com

Comment #13 on issue 1666 by dmitry....@gmail.com: Miranda IM hangs
I see no code in Miranda that may help to continue if worker thread
chashes, and it may crash just for any reason. Visible result is deadlock
or just application malfunction, 50/50.

mir...@googlecode.com

unread,
Jan 20, 2013, 1:18:01 PM1/20/13
to miranda...@googlegroups.com

Comment #14 on issue 1666 by roney.te...@gmail.com: Miranda IM hangs
I've had to stop using Miranda IM because of this bug.

Miranda Version : v0.10.9.0
Unicode Build : Yes

mir...@googlecode.com

unread,
Jan 20, 2013, 1:20:22 PM1/20/13
to miranda...@googlegroups.com

Comment #15 on issue 1666 by dmitry....@gmail.com: Miranda IM hangs
Everybody should agree that this is really show-stopper serie of bugs.
Anyone keeping eye on tracker, maybe raise priority (I understand nothing
changes really ;) but people will post less comments).

mir...@googlecode.com

unread,
Jan 20, 2013, 1:21:22 PM1/20/13
to miranda...@googlegroups.com

Comment #16 on issue 1666 by moesot...@gmail.com: Miranda IM hangs randomly

mir...@googlecode.com

unread,
Jan 27, 2013, 9:49:12 AM1/27/13
to miranda...@googlegroups.com

Comment #17 on issue 1666 by dmitry....@gmail.com: Miranda IM hangs
My crash is the following problem:

Stack -

msvcr110d.dll!_output_l(_iobuf * stream, const char * format,
localeinfo_struct * plocinfo, char * argptr) Line 1640 C++
msvcr110d.dll!_vsnprintf_l(char * string, unsigned int count, const char
* format, localeinfo_struct * plocinfo, char * ap) Line 138 C
msvcr110d.dll!_vsnprintf(char * string, unsigned int count, const char *
format, char * ap) Line 190 C
miranda32.exe!mir_vsnprintf(char * buffer, unsigned int count, const char
* fmt, char * va) Line 218 C++
jabber.dll!CJabberProto::Log(const char * fmt, ...) Line 67 C++
> jabber.dll!CJabberProto::FormatMirVer(JABBER_RESOURCE_STATUS * resource,
> wchar_t * buf, int bufSize) Line 502 C++
jabber.dll!CJabberProto::UpdateMirVer(void * hContact,
JABBER_RESOURCE_STATUS * resource) Line 541 C++
jabber.dll!CJabberProto::UpdateMirVer(JABBER_LIST_ITEM * item) Line 478
C++
jabber.dll!CJabberProto::ListRemoveResource(JABBER_LIST list, const
wchar_t * jid) Line 323 C++
jabber.dll!CJabberProto::OnProcessPresence(HXML__ * node, ThreadData *
info) Line 1795 C++
jabber.dll!CJabberProto::OnProcessProtocol(HXML__ * node, ThreadData *
info) Line 975 C++
jabber.dll!CJabberProto::ServerThread(ThreadData * info) Line 547 C++
miranda32.exe!forkthreadex_r(void * arg) Line 275 C++
msvcr110d.dll!_callthreadstartex() Line 354 C
msvcr110d.dll!_threadstartex(void * ptd) Line 337 C
kernel32.dll!@BaseThreadInitThunk@12 () Unknown
ntdll.dll!___RtlUserThreadStart@8 () Unknown
ntdll.dll!__RtlUserThreadStart@8 () Unknown

I've found problem somewhere in ListRemoveResource() or in global logic
around this.
It calls UpdateMirVer(), then the following code works wrong:

JABBER_RESOURCE_STATUS *resource = item->resourceMode == RSMODE_MANUAL ?
item->manualResource : item->lastSeenResource;
if (resource == NULL) resource = &item->resource[0];

We are found to be in NOT RSMODE_MANUAL mode, but lastSeenResource is
illegal.
It is unavailable, but not NULL, it is just points to some random garbage,
so later we have memory access violation.

There are 3 points in Miranda that write to lastSeenResource, and some
memory copies for jabber list item itself. Maybe I'll figure out who writes
random data into it.

mir...@googlecode.com

unread,
Jan 27, 2013, 9:51:23 AM1/27/13
to miranda...@googlegroups.com

Comment #18 on issue 1666 by dmitry....@gmail.com: Miranda IM hangs
Problem happens when someone uses IM+ for android with the same JID logged
in on regular PC. When IM+ resource logs off, sometimes whis shit described
above happens.
I may repeat that Miranda developers are really welcome here! I will sooner
write some personal workaround than find real bug. Please help us make
Miranda stable.

mir...@googlecode.com

unread,
Jan 27, 2013, 10:01:19 AM1/27/13
to miranda...@googlegroups.com

Comment #19 on issue 1666 by dmitry....@gmail.com: Miranda IM hangs
It seems that this block

// Update MirVer due to possible resource changes
UpdateMirVer(LI);

should be out of resource deletion/defragmentation loop, because before
loop finishes, LI->lastSeenResource = NULL; for proper item is not yet
called, leading to invalid lastSeenResource. I'll test this version,
somebody from Miranda team please check this.

mir...@googlecode.com

unread,
Jan 27, 2013, 10:11:24 AM1/27/13
to miranda...@googlegroups.com

Comment #20 on issue 1666 by dmitry....@gmail.com: Miranda IM hangs
... wrong assumption.

mir...@googlecode.com

unread,
Jan 27, 2013, 10:13:26 AM1/27/13
to miranda...@googlegroups.com

Comment #21 on issue 1666 by dmitry....@gmail.com: Miranda IM hangs
One more clarification - UpdateMirVer() should not update if both
manualResource and lastSeenResource unavailable. Another test run...

mir...@googlecode.com

unread,
Feb 15, 2013, 7:32:06 AM2/15/13
to miranda...@googlegroups.com

Comment #22 on issue 1666 by dmitry....@gmail.com: Miranda IM hangs
Assumption was wroing - still problems here (not null, but invalid
lastSeenResource). I'll write personal dirty workaround.

--
You received this message because this project is configured to send all
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings

mir...@googlecode.com

unread,
Feb 21, 2013, 4:28:47 AM2/21/13
to miranda...@googlegroups.com

Comment #23 on issue 1666 by the.q...@gmail.com: Miranda IM hangs randomly
Finally had Miranda hang again after I turned on the log.
This time it was when I double clicked a Jabber contact to send a message:
nothing happened, GUI just hanged.

Don't know if this is related, possibly something else.

The log didn't reveal much:

[17:57:30 JABBER_1] Not broadcasting avatar changed
[17:57:32 JABBER_1] Avatar is Ok: 3e16dbbf9c5c2fe059b240d17a6898df4443eeb1
== 3e16dbbf9c5c2fe059b240d17a6898df4443eeb1
[17:57:58 JABBER_1] (046EFEA0:792) Data sent
<iq type="get" id="mir_4242" from="m...@gmail.com/Miranda04CF75A5"><ping
xmlns="urn:xmpp:ping"/></iq>
[17:57:58 JABBER_1] (046EFEA0:792) Data received
<iq to="m...@gmail.com/Miranda04CF75A5" id="mir_4242" type="result"/>
[17:57:58 JABBER_1] recvResult = 73
[17:57:58 JABBER_1] bytesParsed = 73
[17:57:59 JABBER_1] (046EFEA0:792) Data received
<presence type="unavailable" from="tar...@gmail.com/gmail.E098E3DF"
to="m...@gmail.com"><caps:c node="http://mail.google.com/xmpp/client/caps"
ver="1.1" ext="pmuc-v1 sms-v1"
xmlns:caps="http://jabber.org/protocol/caps"/><x
xmlns="vcard-temp:x:update"/></presence>
[17:57:59 JABBER_1] recvResult = 271
[17:57:59 JABBER_1] bytesParsed = 271
[17:57:59 JABBER_1] JabberUpdateMirVer: for jid tar...@gmail.com
[17:58:20 (NULL)] Unhandled exception in thread fe0


Can you do anything more to find out what's going on when Miranda hangs
like this?
I have Visual Studio here. Can you connect it and find out where Miranda is
stuck? Or do you need a custom build for that?

mir...@googlecode.com

unread,
Feb 21, 2013, 6:57:55 AM2/21/13
to miranda...@googlegroups.com

Comment #24 on issue 1666 by dmitry....@gmail.com: Miranda IM hangs
That is the same problem. There is bug somewhere that lastSeenResource is
set to invalid value (corrupted) but not to NULL.
This happens if Gmail contact is on the list and uses several resources for
the same JID that online/offline randomly.

I've added personal dirty fix to UpdateMirVer(), it is provided below. It
tries to catch corrupted lastSeenResource and recover somehow.
This is NOT a proper fix. It just makes Miranda stable.

I've spent several hours trying to figure out when exactly lastSeenResource
corrupts, but no luck up to now. Code of the plugin is of moderate quality,
I cannot say that it is dirty, but it definitely contains tricks that makes
it hard to debug for 3d person.
If one who wrote this plugin really cares, then he should try to remember
why lastSeenResource may corrupt.

I may also share my binary build that works stable with this bug (using
workaround below), but it will be complete shit, really.

==========

void CJabberProto::UpdateMirVer(JABBER_LIST_ITEM *item)
{
HANDLE hContact = HContactFromJID(item->jid);
if (!hContact)
return;

Log("JabberUpdateMirVer: for jid " TCHAR_STR_PARAM, item->jid);

JABBER_RESOURCE_STATUS *resource = item->resourceMode == RSMODE_MANUAL ?
item->manualResource : item->lastSeenResource;

// dmih in
bool invalidResource = true;
__try
{
int l = lstrlen (resource->nick);
if (l > 0 && l < 128)
invalidResource = false;
}
__except(EXCEPTION_EXECUTE_HANDLER) {}
if (invalidResource)
{
if (item->resourceMode == RSMODE_MANUAL)
item->manualResource = NULL;
else
item->lastSeenResource = NULL;
}
// dmih out

if (resource == NULL) resource = &item->resource[0];

// dmih in
if (resource == NULL) return;
// dmih out

UpdateMirVer( hContact, resource );

mir...@googlecode.com

unread,
Feb 21, 2013, 7:20:21 AM2/21/13
to miranda...@googlegroups.com

Comment #25 on issue 1666 by the.q...@gmail.com: Miranda IM hangs randomly
I'd like to try your workaround. Would be nice if you could share the
binary. Thanks! :)

mir...@googlecode.com

unread,
Feb 21, 2013, 7:33:53 AM2/21/13
to miranda...@googlegroups.com

Comment #26 on issue 1666 by dmitry....@gmail.com: Miranda IM hangs
http://dmih.ru/f/Miranda-0.10.9.0-dmih-workaround.zip

This is complete Miranda build with all plugins included. First attemp you
may take Plugins\jabber.dll from in into your Miranda. If that does not
start, then take all my binaries.
Miranda.exe have crash handler disabled, so instead of silent deadlock you
will have all Miranda crashed. That makes easier to debug for me. Not sure
it is ok for general use.

mir...@googlecode.com

unread,
Feb 24, 2013, 3:52:35 AM2/24/13
to miranda...@googlegroups.com

Comment #27 on issue 1666 by the.q...@gmail.com: Miranda IM hangs randomly
Miranda Jabber plugin crashed for real this time. Seems it has some
other/real issues too.
Got the following crash report. This was a normal version (without your
changes dmitry).

Not sure if after the crash miranda was restarted by the crash dumper or
not, but it was still running.
Then I tried to send a messaged (via jabber) it hung and stopped responding
completely.

Below are the net logs and crash logs during/from the crash.
There is also a mini dump if anyone wants. Altho doesn't the dump contain
passwords or other private stuff?



=== Net Log
======================================================================
==================================================================================

[07:31:21 JABBER_1] Not broadcasting avatar changed
[07:31:26 JABBER_1] (046ED3B0:932) Data received
<presence from="fri...@gmail.com/gmail.04EDCEF0"
to="m...@gmail.com"><status>Catch me if you
can ;)</status><priority>24</priority><caps:c
node="http://mail.google.com/xmpp/client/caps" ver="1.1" ext="pmuc-v1
sms-v1 vavinvite-v1" xmlns:caps="http://jabber.org/protocol/caps"/><x
xmlns="vcard-temp:x:update"><photo>4d4cf51907c200502bce7cdb15c884a533c4b16f</photo></x></presence>
[07:31:26 JABBER_1] recvResult = 385
[07:31:26 JABBER_1] bytesParsed = 385
[07:31:26 JABBER_1] presence: for jid fri...@gmail.com/gmail.04EDCEF0
[07:31:26 JABBER_1] JabberUpdateMirVer: for rc gmail.04EDCEF0:
http://mail.google.com/xmpp/client/caps#1.1
[07:31:26 JABBER_1] JabberUpdateJidDbSettings: updating jid
fri...@gmail.com to rc gmail.04EDCEF0
[07:31:26 JABBER_1] JabberUpdateMirVer: for rc gmail.04EDCEF0:
http://mail.google.com/xmpp/client/caps#1.1
[07:31:26 JABBER_1] friend ( fri...@gmail.com/gmail.04EDCEF0 ) online, set
contact status to Online
[07:31:26 JABBER_1] Avatar enabled
[07:31:26 JABBER_1] Not hasXAvatar
[07:31:26 JABBER_1] AvatarXVcard set
[07:31:26 JABBER_1] Not broadcasting avatar changed
[07:31:29 JABBER_1] (046ED3B0:932) Data sent
<iq type="get" id="mir_4346" from="m...@gmail.com/Miranda49356326"><ping
xmlns="urn:xmpp:ping"/></iq>
[07:31:29 JABBER_1] (046ED3B0:932) Data received
<iq to="m...@gmail.com/Miranda49356326" id="mir_4346" type="result"/>
[07:31:29 JABBER_1] recvResult = 73
[07:31:29 JABBER_1] bytesParsed = 73
[07:32:09 JABBER_1] (046ED3B0:932) Data received
<presence type="unavailable" from="fri...@gmail.com/gmail.04EDCEF0"
to="m...@gmail.com"><caps:c node="http://mail.google.com/xmpp/client/caps"
ver="1.1" ext="pmuc-v1 sms-v1"
xmlns:caps="http://jabber.org/protocol/caps"/><x
xmlns="vcard-temp:x:update"/></presence>
[07:32:09 JABBER_1] recvResult = 271
[07:32:09 JABBER_1] bytesParsed = 271
[07:32:09 JABBER_1] JabberUpdateMirVer: for jid fri...@gmail.com
[07:32:09 JABBER_1] JabberUpdateMirVer: for iq:version rc :
[09:28:26 (NULL)] Unhandled exception in thread 1a2c
[09:35:40 JABBER_1] Avatar is Ok: 4d4cf51907c200502bce7cdb15c884a533c4b16f
== 4d4cf51907c200502bce7cdb15c884a533c4b16f



=== Crash Report
=================================================================
==================================================================================


Miranda Crash Report from 2013-02-24 07:32:10+0100. Crash Dumper v.0.0.4.21

Likely cause of the crash plugin: Jabber Protocol

Exception: Access Violation at address 75E5BF7D. Reading from address
00360077.

Stack Trace:
---------------------------------------------------------------
75E5BF7D (msvcrt 75E50000): (filename not available) (0): wcsstr
03737D3F (jabber 03710000): (filename not available) (0): Unload
03737F2F (jabber 03710000): (filename not available) (0): Unload
03737CD5 (jabber 03710000): (filename not available) (0): Unload
03756B5A (jabber 03710000): (filename not available) (0): Unload
03755064 (jabber 03710000): (filename not available) (0): Unload
03753B89 (jabber 03710000): (filename not available) (0): Unload
004016AB (miranda32 00400000): (filename not available) (0): (function-name
not available)
75E61287 (msvcrt 75E50000): (filename not available) (0): itow_s
75E61328 (msvcrt 75E50000): (filename not available) (0): endthreadex
763233AA (kernel32 76310000): (filename not available) (0):
BaseThreadInitThunk
77229EF2 (ntdll 771F0000): (filename not available) (0):
RtlInitializeExceptionChain
77229EC5 (ntdll 771F0000): (filename not available) (0):
RtlInitializeExceptionChain

CPU: Intel(R) Core(TM)2 CPU 6400 @ 2.13GHz [Intel64 Family 6 Model 15
Stepping 6] [DEP Enabled] [2 CPUs]
Installed RAM: 4096 MBytes
Operating System: Microsoft Windows 7 Ultimate Edition, 64-bit Service Pack
1 (build 7601)
Internet Explorer: 9.0.8112.16421 (build 98112)
Administrator privileges: No
OS Languages: (UI | Locale (User/System)) : English/English |
English/English

Miranda IM Version: 0.10.9.0 Unicode [running inside WOW64]
Build time: 2012-12-10 06:28:30+0100
Profile: C:\Users\Q\AppData\Roaming\Miranda IM\Profiles\Q\Q.dat
Language pack: No language pack installed
Nightly: No
Unicode: Yes
Service Mode: No

Active Plugins (24):
¤ advaimg.dll v.0.10.9.0 [2012-12-10 06:26:30+0100] - Miranda Image services
¤ Aim.dll v.0.10.9.0 [2012-12-10 06:27:06+0100] - AIM Protocol |Unicode
aware|
¤ avs.dll v.0.10.9.0 [2012-12-10 06:27:14+0100] - Avatar service (Unicode) |
Unicode aware|
¤ chat.dll v.0.10.9.0 [2012-12-10 06:27:20+0100] - Chat |Unicode aware|
¤ clist_modern.dll v.0.9.0.11 [2012-12-10 06:28:48+0100] - Modern Contact
List '09 |Unicode aware|
¤ dbx_mmap.dll v.0.10.9.0 [2012-12-10 06:27:34+0100] - Miranda mmap
database driver |Unicode aware|
¤ fingerprint.dll v.1.1.15.0 [2010-09-20 17:41:34+0100] - Fingerprint Plus |
Unicode aware|
¤ GG.dll v.0.10.9.0 [2012-12-10 06:26:38+0100] - Gadu-Gadu Protocol
¤ historypp.dll v.1.5.1.4 [2010-02-23 17:16:24+0100] - History++ (2in1) |
Unicode aware|
¤ ICQ.dll v.0.10.9.0 [2012-12-10 06:27:50+0100] - IcqOscarJ Protocol |
Unicode aware|
¤ ieview.dll v.1.4.0.0 [2012-07-01 11:52:17+0100] - IEView (Unicode) |
Unicode aware|
¤ import.dll v.0.10.9.0 [2012-12-10 06:27:52+0100] - Import contacts and
messages |Unicode aware|
¤ IRC.dll v.0.10.9.0 [2012-12-10 06:26:50+0100] - IRC protocol |Unicode
aware|
¤ jabber.dll v.0.10.9.0 [2012-12-10 06:28:10+0100] - Jabber Protocol |
Unicode aware|
¤ KeepStatus.dll v.0.8.0.97 [2011-02-09 21:56:56+0100] - KeepStatus
(Unicode) |Unicode aware|
¤ MirOTR.dll v.0.11.0.2 [2011-07-04 19:44:38+0100] - Miranda OTR |Unicode
aware|
¤ msn.dll v.0.10.9.0 [2012-12-10 06:29:04+0100] - MSN Protocol |Unicode
aware|
¤ mtextcontrolW.dll v.0.8.0.1 [2010-07-08 11:22:48+0100] - Miranda Text
Control (unicode) |Unicode aware|
¤ PopUpW.dll v.2.1.1.5 [2010-07-08 11:08:20+0100] - PopUp Plus (Unicode) |
Unicode aware|
¤ scriver.dll v.2.10.0.2 [2012-12-10 06:29:18+0100] - Scriver (Unicode) |
Unicode aware|
¤ spellcheckerW.dll v.0.2.6.0 [2011-05-15 21:37:03+0100] - Spell Checker |
Unicode aware|
¤ svc_crshdmp.dll v.0.0.4.21 [2012-04-03 20:58:58+0100] - Crash Dumper
Unicode |Unicode aware|
¤ uinfoexW.dll v.0.8.3.1 [2009-10-29 21:02:16+0100] - UserInfoEx (Unicode) |
Unicode aware|
¤ Yahoo.dll v.0.10.9.0 [2012-12-10 06:26:58+0100] - Yahoo Protocol
Beta/Nightly |Unicode aware|

Loaded Modules:
-------------------------------------------------------------------------------
C:\Users\Q\AppData\Roaming\Miranda IM\miranda32.exe 00400000 - 004D1000
v.0.10.9.0 [2012-12-10 06:28:30+0100]
C:\Windows\SysWOW64\ntdll.dll 771F0000 - 77370000 v.6.1.7601.17725
[2011-11-17 06:38:39+0100]
C:\Windows\syswow64\kernel32.dll 76310000 - 76420000 v.6.1.7601.17965
[2012-10-04 17:47:40+0100]
C:\Windows\syswow64\KERNELBASE.dll 759E0000 - 75A27000 v.6.1.7601.17965
[2012-10-04 17:47:41+0100]
C:\Windows\syswow64\WS2_32.dll 762C0000 - 762F5000 v.6.1.7601.17514
[2010-11-21 04:23:55+0100]
C:\Windows\syswow64\msvcrt.dll 75E50000 - 75EFC000 v.7.0.7601.17744
[2011-12-16 08:52:58+0100]
C:\Windows\syswow64\RPCRT4.dll 766B0000 - 767A0000 v.6.1.7601.17514
[2010-11-21 04:24:11+0100]
C:\Windows\syswow64\SspiCli.dll 748D0000 - 74930000 v.6.1.7601.17856
[2012-06-02 05:34:09+0100]
C:\Windows\syswow64\CRYPTBASE.dll 748C0000 - 748CC000 v.6.1.7600.16385
[2009-07-14 02:15:07+0100]
C:\Windows\SysWOW64\sechost.dll 760C0000 - 760D9000 v.6.1.7600.16385
[2009-07-14 02:16:13+0100]
C:\Windows\syswow64\NSI.dll 764E0000 - 764E6000 v.6.1.7600.16385
[2009-07-14 02:16:11+0100]
C:\Windows\syswow64\USER32.dll 761C0000 - 762C0000 v.6.1.7601.17514
[2010-11-21 04:24:20+0100]
C:\Windows\syswow64\GDI32.dll 74A40000 - 74AD0000 v.6.1.7601.17514
[2010-11-21 04:24:14+0100]
C:\Windows\syswow64\LPK.dll 76420000 - 7642A000 v.6.1.7600.16385
[2009-07-14 02:11:23+0100]
C:\Windows\syswow64\USP10.dll 75C10000 - 75CAD000 v.1.626.7601.17514
[2010-11-21 04:24:16+0100]
C:\Windows\syswow64\ADVAPI32.dll 75DB0000 - 75E50000 v.6.1.7601.17514
[2010-11-21 04:24:28+0100]
C:\Windows\syswow64\SHELL32.dll 74AD0000 - 7571A000 v.6.1.7601.17859
[2012-06-09 05:41:00+0100]
C:\Windows\syswow64\SHLWAPI.dll 74930000 - 74987000 v.6.1.7601.17514
[2010-11-21 04:23:48+0100]
C:\Windows\syswow64\comdlg32.dll 76430000 - 764AB000 v.6.1.7601.17514
[2010-11-21 04:23:48+0100]
C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2\COMCTL32.dll
705A0000
- 7073E000 v.6.10.7601.17514 [2010-11-21 04:23:55+0100]
C:\Windows\syswow64\ole32.dll 767D0000 - 7692C000 v.6.1.7601.17514
[2010-11-21 04:24:01+0100]
C:\Windows\syswow64\OLEAUT32.dll 76020000 - 760AF000 v.6.1.7601.17676
[2011-08-27 05:26:27+0100]
C:\Windows\system32\WINMM.dll 6E0C0000 - 6E0F2000 v.6.1.7601.17514
[2010-11-21 04:24:16+0100]
C:\Windows\system32\VERSION.dll 71310000 - 71319000 v.6.1.7600.16385
[2009-07-14 02:16:17+0100]
C:\Users\Q\AppData\Roaming\Miranda IM\zlib.dll 10000000 - 10012000
v.1.2.7.0 [2012-12-10 06:28:00+0100]
C:\Windows\system32\IMM32.DLL 75A90000 - 75AF0000 v.6.1.7601.17514
[2010-11-21 04:24:25+0100]
C:\Windows\syswow64\MSCTF.dll 75CB0000 - 75D7C000 v.6.1.7600.16385
[2009-07-14 02:15:43+0100]
C:\Windows\system32\uxtheme.dll 6F960000 - 6F9E0000 v.6.1.7600.16385
[2009-07-14 02:11:24+0100]
C:\Windows\system32\dwmapi.dll 6D9A0000 - 6D9B3000 v.6.1.7600.16385
[2009-07-14 02:15:13+0100]
C:\Windows\syswow64\CLBCatQ.DLL 74990000 - 74A13000 v.2001.12.8530.16385
[2009-07-14 02:15:03+0100]
C:\Windows\system32\explorerframe.dll 6CD20000 - 6CE8F000 v.6.1.7601.17514
[2010-11-21 04:24:23+0100]
C:\Windows\system32\DUser.dll 6F9F0000 - 6FA1F000 v.6.1.7600.16385
[2009-07-14 02:15:13+0100]
C:\Windows\system32\DUI70.dll 6CA40000 - 6CAF2000 v.6.1.7600.16385
[2009-07-14 02:15:13+0100]
C:\Users\Q\AppData\Roaming\Miranda IM\Plugins\dbx_mmap.dll 05130000 -
05139000 v.0.10.9.0 [2012-12-10 06:27:34+0100]
C:\Users\Q\AppData\Roaming\Miranda IM\Plugins\svc_crshdmp.dll 002D0000 -
002E3000 v.0.0.4.21 [2012-04-03 20:58:58+0100]
C:\Users\Q\AppData\Roaming\Miranda IM\Plugins\advaimg.dll 01FD0000 -
02080000 v.0.10.9.0 [2012-12-10 06:26:30+0100]
C:\Users\Q\AppData\Roaming\Miranda IM\Plugins\clist_modern.dll 06590000 -
06624000 v.0.9.0.11 [2012-12-10 06:28:48+0100]
C:\Windows\system32\MSIMG32.dll 6F950000 - 6F955000 v.6.1.7600.16385
[2009-07-14 02:15:44+0100]
C:\Windows\WinSxS\x86_microsoft.windows.gdiplus_6595b64144ccf1df_1.0.7601.17825_none_83810474ed62c6c4\gdiplus.dll
72400000
- 725A8000 v.5.2.7601.17825 [2012-04-21 05:21:00+0100]
C:\Users\Q\AppData\Roaming\Miranda IM\Plugins\aim.dll 028F0000 - 02925000
[2012-12-10 06:27:06+0100]
C:\Users\Q\AppData\Roaming\Miranda IM\Plugins\avs.dll 02560000 - 02574000
v.0.10.9.0 [2012-12-10 06:27:14+0100]
C:\Users\Q\AppData\Roaming\Miranda IM\Plugins\chat.dll 02930000 - 02975000
[2012-12-10 06:27:20+0100]
C:\Windows\system32\riched20.dll 6CF20000 - 6CF96000 v.5.31.23.1230
[2010-11-21 04:24:28+0100]
C:\Users\Q\AppData\Roaming\Miranda IM\Plugins\fingerprint.dll 72380000 -
723FF000 v.1.1.15.0 [2010-09-20 17:41:34+0100]
C:\Users\Q\AppData\Roaming\Miranda IM\Plugins\gg.dll 32500000 - 3254B000
v.0.10.9.0 [2012-12-10 06:26:38+0100]
C:\Users\Q\AppData\Roaming\Miranda IM\Plugins\historypp.dll 03360000 -
034B2000 v.1.5.1.4 [2010-02-23 17:16:24+0100]
C:\Windows\system32\winspool.drv 713A0000 - 713F1000 v.6.1.7601.17514
[2010-11-21 04:24:08+0100]
C:\Users\Q\AppData\Roaming\Miranda IM\Plugins\icq.dll 034C0000 - 03516000
v.0.10.9.0 [2012-12-10 06:27:50+0100]
C:\Users\Q\AppData\Roaming\Miranda IM\Plugins\ieview.dll 73960000 -
7399E000 v.1.4.0.0 [2012-07-01 11:52:17+0100]
C:\Users\Q\AppData\Roaming\Miranda IM\Plugins\import.dll 22000000 -
2201F000 v.0.8.0.1 [2012-12-10 06:27:52+0100]
C:\Users\Q\AppData\Roaming\Miranda IM\Plugins\irc.dll 54010000 - 54073000
v.0.10.9.0 [2012-12-10 06:26:50+0100]
C:\Users\Q\AppData\Roaming\Miranda IM\Plugins\jabber.dll 03710000 -
037C6000 v.0.10.9.0 [2012-12-10 06:28:10+0100]
C:\Users\Q\AppData\Roaming\Miranda IM\Plugins\keepstatus.dll 11CD0000 -
11CE4000 v.0.8.0.97 [2011-02-09 21:56:56+0100]
C:\Users\Q\AppData\Roaming\Miranda IM\Plugins\mirotr.dll 722D0000 -
7237A000 v.0.11.0.2 [2011-07-04 19:44:38+0100]
C:\Users\Q\AppData\Roaming\Miranda IM\Plugins\msn.dll 19000000 - 19042000
v.0.10.9.0 [2012-12-10 06:29:04+0100]
C:\Users\Q\AppData\Roaming\Miranda IM\Plugins\mtextcontrolw.dll 25A20000 -
25A2A000 v.0.8.0.1 [2010-07-08 11:22:48+0100]
C:\Windows\system32\msftedit.dll 703F0000 - 70484000 v.5.41.21.2510
[2010-11-21 04:24:14+0100]
C:\Users\Q\AppData\Roaming\Miranda IM\Plugins\popupw.dll 55550000 -
5559C000 v.2.1.1.5 [2010-07-08 11:08:20+0100]
C:\Windows\system32\MSVCP60.dll 74670000 - 746D6000 v.7.0.7600.16385
[2009-07-14 02:15:50+0100]
C:\Users\Q\AppData\Roaming\Miranda IM\Plugins\scriver.dll 03930000 -
03992000 v.2.10.0.1 [2012-12-10 06:29:18+0100]
C:\Users\Q\AppData\Roaming\Miranda IM\Plugins\spellcheckerw.dll 72240000 -
722CE000 [2011-05-15 21:37:03+0100]
C:\Users\Q\AppData\Roaming\Miranda IM\Plugins\uinfoexw.dll 03B20000 -
03B82000 v.0.8.3.1 [2009-10-29 21:02:16+0100]
C:\Users\Q\AppData\Roaming\Miranda IM\Plugins\yahoo.dll 039C0000 -
039EF000 v.0.10.0.3 [2012-12-10 06:26:58+0100]
C:\Windows\system32\wtsapi32.dll 71260000 - 7126D000 v.6.1.7601.17514
[2010-11-21 04:23:54+0100]
C:\Program Files (x86)\KatMouse\KatMouseS.dll 03A00000 - 03A0F000
v.1.0.0.4 [2007-06-22 15:48:58+0100]
C:\Windows\system32\mswsock.dll 74380000 - 743BC000 v.6.1.7601.17514
[2010-11-21 04:24:09+0100]
C:\Windows\System32\wshtcpip.dll 74370000 - 74375000 v.6.1.7600.16385
[2009-07-14 02:16:20+0100]
C:\Windows\System32\wship6.dll 712F0000 - 712F6000 v.6.1.7600.16385
[2009-07-14 02:16:20+0100]
C:\Windows\system32\DNSAPI.dll 71210000 - 71254000 v.6.1.7601.17570
[2011-03-03 06:38:01+0100]
C:\Program Files (x86)\Common Files\Microsoft Shared\Windows
Live\WLIDNSP.DLL 71270000 - 71297000 v.7.250.4311.0 [2012-07-17
14:49:00+0100]
C:\Windows\syswow64\PSAPI.DLL 760B0000 - 760B5000 v.6.1.7600.16385
[2009-07-14 02:16:12+0100]
C:\Windows\system32\IPHLPAPI.DLL 741E0000 - 741FC000 v.6.1.7601.17514
[2010-11-21 04:24:32+0100]
C:\Windows\system32\WINNSI.DLL 741D0000 - 741D7000 v.6.1.7600.16385
[2009-07-14 02:16:19+0100]
C:\Windows\system32\rasadhlp.dll 712D0000 - 712D6000 v.6.1.7600.16385
[2009-07-14 02:16:12+0100]
C:\Windows\System32\fwpuclnt.dll 711D0000 - 71208000 v.6.1.7601.17514
[2010-11-21 04:24:08+0100]
C:\Windows\system32\NLAapi.dll 6C6C0000 - 6C6D0000 v.6.1.7601.17761
[2012-01-13 08:12:03+0100]
C:\Windows\system32\napinsp.dll 6A990000 - 6A9A0000 v.6.1.7600.16385
[2009-07-14 02:16:02+0100]
C:\Windows\system32\pnrpnsp.dll 6A970000 - 6A982000 v.6.1.7600.16385
[2009-07-14 02:16:12+0100]
C:\Windows\System32\winrnr.dll 6A960000 - 6A968000 v.6.1.7600.16385
[2009-07-14 02:16:19+0100]
C:\Windows\system32\schannel.dll 693B0000 - 693EA000 v.6.1.7601.17856
[2012-06-02 05:40:39+0100]
C:\Windows\syswow64\CRYPT32.dll 75AF0000 - 75C0E000 v.6.1.7601.17856
[2012-06-02 05:36:29+0100]
C:\Windows\syswow64\MSASN1.dll 771C0000 - 771CC000 v.6.1.7601.17514
[2010-11-21 04:23:48+0100]
C:\Windows\system32\credssp.dll 69820000 - 69828000 v.6.1.7601.17514
[2010-11-21 04:24:33+0100]
C:\Windows\system32\secur32.dll 6E600000 - 6E608000 v.6.1.7601.17856
[2012-06-02 05:40:42+0100]
C:\Windows\system32\ncrypt.dll 74510000 - 74548000 v.6.1.7601.18007
[2012-11-20 05:51:09+0100]
C:\Windows\system32\bcrypt.dll 744F0000 - 74507000 v.6.1.7600.16385
[2009-07-14 02:11:20+0100]
C:\Windows\SysWOW64\bcryptprimitives.dll 744B0000 - 744ED000
v.6.1.7600.16385 [2009-07-14 02:17:54+0100]
C:\Windows\SysWOW64\FirewallAPI.dll 71320000 - 71396000 v.6.1.7600.16385
[2009-07-14 02:15:21+0100]
C:\Windows\SysWOW64\oleacc.dll 6D9E0000 - 6DA1C000 v.7.0.0.0 [2011-08-27
05:26:27+0100]
C:\Windows\system32\msls31.dll 73AB0000 - 73ADB000 v.3.10.349.0
[2012-08-04 05:32:07+0100]
C:\Windows\system32\CRYPTSP.dll 74590000 - 745A6000 v.6.1.7600.16385
[2009-07-14 02:15:07+0100]
C:\Windows\system32\rsaenh.dll 74550000 - 7458B000 v.6.1.7600.16385
[2009-07-14 02:17:54+0100]
C:\Windows\SysWOW64\ieframe.dll 66110000 - 66A5D000 v.9.0.8112.16464
[2013-01-08 23:09:18+0100]
C:\Windows\syswow64\iertutil.dll 764F0000 - 766A9000 v.9.0.8112.16464
[2013-01-08 22:56:51+0100]
C:\Windows\syswow64\urlmon.dll 75F00000 - 76011000 v.9.0.8112.16464
[2013-01-08 23:03:57+0100]
C:\Windows\syswow64\WININET.dll 758C0000 - 759DB000 v.9.0.8112.16464
[2013-01-08 23:03:20+0100]
C:\Windows\syswow64\Normaliz.dll 76300000 - 76303000 v.6.1.7600.16385
[2009-07-14 02:09:00+0100]
C:\Windows\system32\apphelp.dll 71180000 - 711CC000 v.6.1.7601.17514
[2010-11-21 04:24:14+0100]
C:\Windows\system32\profapi.dll 74360000 - 7436B000 v.6.1.7600.16385
[2009-07-14 02:16:12+0100]
C:\Windows\SysWOW64\mshtml.dll 63290000 - 63E55000 v.9.0.8112.16464
[2013-01-08 23:23:25+0100]
C:\Windows\system32\ntmarta.dll 708C0000 - 708E1000 v.6.1.7600.16385
[2009-07-14 02:16:11+0100]
C:\Windows\syswow64\WLDAP32.dll 76170000 - 761B5000 v.6.1.7601.17514
[2010-11-21 04:24:16+0100]
C:\Windows\system32\msimtf.dll 73950000 - 7395B000 v.6.1.7600.16385
[2009-07-14 02:15:44+0100]
C:\Windows\system32\MLANG.dll 73AE0000 - 73B0E000 v.6.1.7600.16385
[2009-07-14 02:15:40+0100]
C:\Windows\system32\d2d1.dll 57B40000 - 57BFA000 v.6.1.7601.17563
[2011-02-19 07:30:50+0100]
C:\Windows\system32\DWrite.dll 739A0000 - 73AAB000 v.6.1.7601.17789
[2012-03-03 06:31:19+0100]
C:\Windows\system32\dxgi.dll 707E0000 - 70863000 v.6.1.7601.17514
[2010-11-21 04:24:08+0100]
C:\Windows\syswow64\WINTRUST.dll 764B0000 - 764DD000 v.6.1.7601.17940
[2012-08-24 17:57:48+0100]
C:\Windows\system32\d3d10_1.dll 72210000 - 7223C000 v.6.1.7601.17544
[2011-01-17 06:47:13+0100]
C:\Windows\system32\d3d10_1core.dll 721D0000 - 7220A000 v.6.1.7601.17514
[2010-11-21 04:23:48+0100]
C:\Windows\system32\SXS.DLL 6B750000 - 6B7AF000 v.6.1.7601.17514
[2010-11-21 04:24:16+0100]
C:\Windows\system32\d3d10.dll 70490000 - 70592000 v.6.1.7600.16385
[2009-07-14 02:15:07+0100]
C:\Windows\system32\d3d10core.dll 707A0000 - 707D3000 v.6.1.7600.16385
[2009-07-14 02:15:07+0100]
C:\Windows\system32\PROPSYS.dll 6D8A0000 - 6D995000 v.7.0.7601.17514
[2010-11-21 04:24:08+0100]
C:\Windows\system32\dbghelp.dll 743C0000 - 744AB000 v.6.1.7601.17514
[2010-11-21 04:24:09+0100]

mir...@googlecode.com

unread,
Feb 24, 2013, 4:56:42 AM2/24/13
to miranda...@googlegroups.com

Comment #28 on issue 1666 by dmitry....@gmail.com: Miranda IM hangs
That is the same issue.

mir...@googlecode.com

unread,
Feb 24, 2013, 4:57:42 AM2/24/13
to miranda...@googlegroups.com

Comment #29 on issue 1666 by dmitry....@gmail.com: Miranda IM hangs
And yes, dump will contatin your sensitive information, so send it only to
one you trust.

mir...@googlecode.com

unread,
Feb 24, 2013, 5:00:32 AM2/24/13
to miranda...@googlegroups.com

Comment #30 on issue 1666 by the.q...@gmail.com: Miranda IM hangs randomly
Some devs should really look into this. ;)

mir...@googlecode.com

unread,
Feb 24, 2013, 5:15:14 AM2/24/13
to miranda...@googlegroups.com

Comment #31 on issue 1666 by dmitry....@gmail.com: Miranda IM hangs
Maybe devs think that we should go to Miranda NG. I do not remember who
went where, but if Jabber plugin developer was one who moved to NG, we can
write here for years without resonse. Then RIP Miranda, actually.

mir...@googlecode.com

unread,
Feb 24, 2013, 5:23:26 AM2/24/13
to miranda...@googlegroups.com

Comment #32 on issue 1666 by the.q...@gmail.com: Miranda IM hangs randomly
Oh there is a fork of Miranda, I was not aware. Looks good, should try it
and see if it has the same problem. Altho that their download page isn't
even in english, and is a wiki, isn't very encouraging.

mir...@googlecode.com

unread,
Feb 24, 2013, 5:42:18 AM2/24/13
to miranda...@googlegroups.com

Comment #33 on issue 1666 by asko.ero...@gmail.com: Miranda IM hangs
It would be so unfortunate to give up using miranda. It's been my main IM
client about 10 years now. But the Google talk support is mandatory for me
and Miranda is no good for me without it or even if it remains as
unreliable as it is now.

Asko

mir...@googlecode.com

unread,
Jan 7, 2015, 7:30:14 PM1/7/15
to miranda...@googlegroups.com

Comment #34 on issue 1666 by jol...@gmail.com: Miranda IM hangs randomly
due to Jabber plugin
https://code.google.com/p/miranda/issues/detail?id=1666

Still no resolution to this problem?
For me it almost always happens when I unlock my PC ... then the callstack
looks something like:
ntdll.dll!00007ff978dd0c8a()
[Frames below may be incorrect and/or missing, no symbols loaded for
ntdll.dll]
ntdll.dll!00007ff978d78b61()
ntdll.dll!00007ff978d77124()
jabber.dll!CJabberProto::ListFindNext(JABBER_LIST list, int fromOffset)
Line 426
jabber.dll!CJabberProto::SendVIsibleInvisiblePresence(int invisible) Line
629 + 0x26 bytes
jabber.dll!CJabberProto::SendPresence(int status, bool bSendToAll) Line 937
jabber.dll!CJabberProto::SetServerStatus(int iNewStatus) Line 410
jabber.dll!CJabberProto::SetStatus(int iNewStatus) Line 1395
miranda64.exe!CallProtoServiceInt(...
Reply all
Reply to author
Forward
0 new messages