Merge lp:~ted/lightdm-remote-session-freerdp/check-byte-count into lp:lightdm-remote-session-freerdp

Proposed by Ted Gould
Status: Merged
Approved by: Albert Astals Cid
Approved revision: 12
Merged at revision: 12
Proposed branch: lp:~ted/lightdm-remote-session-freerdp/check-byte-count
Merge into: lp:lightdm-remote-session-freerdp
Diff against target: 12 lines (+1/-1)
1 file modified
socket-sucker.c (+1/-1)
To merge this branch: bzr merge lp:~ted/lightdm-remote-session-freerdp/check-byte-count
Reviewer Review Type Date Requested Status
Albert Astals Cid (community) Approve
jenkins (community) continuous-integration Approve
Review via email: mp+122162@code.launchpad.net

Commit message

Check byte count or error

Description of the change

Checking to make sure the bytes in are the same as the bytes out

To post a comment you must log in.
Revision history for this message
jenkins (martin-mrazik+qa) wrote :
review: Approve (continuous-integration)
Revision history for this message
Albert Astals Cid (aacid) wrote :

Nice :-)

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'socket-sucker.c'
2--- socket-sucker.c 2012-08-29 21:58:05 +0000
3+++ socket-sucker.c 2012-08-30 22:03:21 +0000
4@@ -69,7 +69,7 @@
5
6 close(socket_fd);
7
8- if (in > 0 && out > 0) {
9+ if (in > 0 && out > 0 && in == out) {
10 return 0;
11 } else {
12 return -1;

Subscribers

People subscribed via source and target branches

to all changes: