diff options
author | Conor Curran <conor.curran@canonical.com> | 2010-09-15 10:20:47 +0100 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2010-09-15 10:20:47 +0100 |
commit | 01182ba70563b73014c5296e32e9b5eb16d66dbb (patch) | |
tree | c4f999a6dab33be51f9dede7c3aec99435e23fe2 /src/sound-service.c | |
parent | 4b7abb73527b7ce240c15d408b00afa6a80a3c07 (diff) | |
download | ayatana-indicator-sound-01182ba70563b73014c5296e32e9b5eb16d66dbb.tar.gz ayatana-indicator-sound-01182ba70563b73014c5296e32e9b5eb16d66dbb.tar.bz2 ayatana-indicator-sound-01182ba70563b73014c5296e32e9b5eb16d66dbb.zip |
race condition indicator crash fixed when the service crashes - indicator should now seemlessly handle flaky service
Diffstat (limited to 'src/sound-service.c')
-rw-r--r-- | src/sound-service.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sound-service.c b/src/sound-service.c index f19379d..51f5f37 100644 --- a/src/sound-service.c +++ b/src/sound-service.c @@ -41,8 +41,8 @@ service_shutdown (IndicatorService *service, gpointer user_data) if (mainloop != NULL) { g_debug("Service shutdown !"); //TODO: uncomment for release !! - close_pulse_activites(); - g_main_loop_quit(mainloop); + //close_pulse_activites(); + //g_main_loop_quit(mainloop); } return; } |