diff options
author | Conor Curran <conor.curran@canonical.com> | 2010-03-26 17:15:55 +0000 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2010-03-26 17:15:55 +0000 |
commit | 67f913653040e4272ded30e423b907772c32d74c (patch) | |
tree | 55cfa009ee8dbe996328c551aa985d2b04bda90a /src/sound-service.c | |
parent | ce3a15ebdb4d172a12ba66936a76a1b6ebf1f931 (diff) | |
parent | d4f0b5072f4464aeb6fce4c2f2bc4c70b1287ba6 (diff) | |
download | ayatana-indicator-sound-67f913653040e4272ded30e423b907772c32d74c.tar.gz ayatana-indicator-sound-67f913653040e4272ded30e423b907772c32d74c.tar.bz2 ayatana-indicator-sound-67f913653040e4272ded30e423b907772c32d74c.zip |
Merged in fix for slider handle event crash - (unintialized memory bug)
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 64ff69e..0b5320a 100644 --- a/src/sound-service.c +++ b/src/sound-service.c @@ -44,8 +44,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; } |