blob: 9915a808ae78b21ef3ebcd442443a02399e5b133 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
--- libtranslate-0.99/src/translate-session.c.orig Mon Apr 11 22:44:53 2005
+++ libtranslate-0.99/src/translate-session.c Mon Apr 11 22:51:48 2005
@@ -703,7 +703,14 @@
GError *tmp_err = NULL;
g_mutex_lock(info->mutex);
- ret = info->err != NULL;
+ if (info->err)
+ {
+ ret = TRUE;
+ if (info->progress_cond)
+ g_cond_signal(info->progress_cond);
+ }
+ else
+ ret = FALSE;
g_mutex_unlock(info->mutex);
if (ret)
@@ -728,6 +735,9 @@
else
g_propagate_error(&info->err, tmp_err);
+ if (info->progress_cond)
+ g_cond_signal(info->progress_cond);
+
g_mutex_unlock(info->mutex);
return;
@@ -759,6 +769,9 @@
info->err = g_error_new(TRANSLATE_SESSION_ERROR,
TRANSLATE_SESSION_ERROR_NO_SERVICE,
_("no service could translate chunk"));
+
+ if (info->progress_cond)
+ g_cond_signal(info->progress_cond);
}
g_mutex_unlock(info->mutex);
|