Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 389bf4b3 authored by Matthew Xie's avatar Matthew Xie Committed by Android Git Automerger
Browse files

am 4f88ff48: Merge "Use the right fd for flush call" into jb-mr2-dev

* commit '4f88ff48':
  Use the right fd for flush call
parents 473ec50a 4f88ff48
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -147,7 +147,7 @@ class LocalSocketImpl
        public void flush() throws IOException {
            FileDescriptor myFd = fd;
            if (myFd == null) throw new IOException("socket closed");
            while(pending_native(fd) > 0) {
            while(pending_native(myFd) > 0) {
                try {
                    Thread.sleep(10);
                } catch (InterruptedException ie) {