Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixes: NB#260125 - Remote sync failed with device and sync doesn't en…
…d in

transfer-ui
  • Loading branch information
Deepak Kodihalli committed May 26, 2011
1 parent 83a7c4f commit f6a3d0d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
7 changes: 7 additions & 0 deletions debian/changelog
@@ -1,3 +1,10 @@
libmeegosyncml (0.4.17) stable; urgency=low

* Fixes: NB#260125 - Remote sync failed with device and sync doesn't end in
transfer-ui

-- Deepak Kodihalli <deepak.kodihalli@nokia.com> Thu, 26 May 2011 17:27:00 +0530

libmeegosyncml (0.4.16) stable; urgency=low

* Fixes: NB#258951 - msyncd crash when cancel the sync from transfer-ui
Expand Down
3 changes: 2 additions & 1 deletion src/RequestListener.cpp
Expand Up @@ -85,7 +85,8 @@ void RequestListener::stop()
FUNCTION_CALL_TRACE

disconnect( &iParser, 0, this, 0 );

disconnect( iTransport, SIGNAL(readXMLData(QIODevice *, bool)) ,
&iParser, SLOT(parseResponse(QIODevice *, bool)) );
if( iTransport )
{
disconnect( iTransport, 0, this, 0 );
Expand Down

0 comments on commit f6a3d0d

Please sign in to comment.