Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 90105 Details for
Bug 81423
libtranslate-0.99.ebuild (New Package)
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
condfix.patch
libtranslate-0.99-condfix.patch (text/plain), 1.01 KB, created by
Carles Escrig
on 2006-06-25 06:37:17 UTC
(
hide
)
Description:
condfix.patch
Filename:
MIME Type:
Creator:
Carles Escrig
Created:
2006-06-25 06:37:17 UTC
Size:
1.01 KB
patch
obsolete
>diff -Naur libtranslate-0.99.orig/src/translate-session.c libtranslate-0.99/src/translate-session.c >--- libtranslate-0.99.orig/src/translate-session.c 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);
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 81423
:
50873
|
50961
|
90104
| 90105 |
90106
|
90107
|
90108