Loading init/property_service.cpp +5 −0 Original line number Diff line number Diff line Loading @@ -372,6 +372,7 @@ class SocketConnection { int result = TEMP_FAILURE_RETRY(recv(socket_, data, bytes_left, MSG_DONTWAIT)); if (result <= 0) { PLOG(ERROR) << "sys_prop: recv error"; return false; } Loading @@ -379,6 +380,10 @@ class SocketConnection { data += result; } if (bytes_left != 0) { LOG(ERROR) << "sys_prop: recv data is not properly obtained."; } return bytes_left == 0; } Loading Loading
init/property_service.cpp +5 −0 Original line number Diff line number Diff line Loading @@ -372,6 +372,7 @@ class SocketConnection { int result = TEMP_FAILURE_RETRY(recv(socket_, data, bytes_left, MSG_DONTWAIT)); if (result <= 0) { PLOG(ERROR) << "sys_prop: recv error"; return false; } Loading @@ -379,6 +380,10 @@ class SocketConnection { data += result; } if (bytes_left != 0) { LOG(ERROR) << "sys_prop: recv data is not properly obtained."; } return bytes_left == 0; } Loading