Merge lp://staging/~charlesk/libindicate/lp-957611 into lp://staging/libindicate/0.7
Proposed by
Charles Kerr
Status: | Merged |
---|---|
Approved by: | Charles Kerr |
Approved revision: | 451 |
Merge reported by: | Charles Kerr |
Merged at revision: | not available |
Proposed branch: | lp://staging/~charlesk/libindicate/lp-957611 |
Merge into: | lp://staging/libindicate/0.7 |
Diff against target: |
130 lines (+74/-46) 1 file modified
libindicate/listener.c (+74/-46) |
To merge this branch: | bzr merge lp://staging/~charlesk/libindicate/lp-957611 |
Related bugs: |
Reviewer | Review Type | Date Requested | Status |
---|---|---|---|
Lars Karlitski (community) | Approve | ||
Review via email: mp+98056@code.staging.launchpad.net |
To post a comment you must log in.
Before:
if (error) {
g_warning ("error!");
goto cleanup;
}
GVariant foo = bar; /* Coverity is unhappy about foo + goto */
yadda;
cleanup:
...
After:
if (error) {
g_warning ("error!");
} else {
GVariant foo = bar;
yadda;
}
...