commit | 62451dcba06601b6643e182791bce658f79ba344 | [log] [tgz] |
---|---|---|
author | mallinath@webrtc.org <mallinath@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d> | Fri Dec 13 12:29:34 2013 +0000 |
committer | mallinath@webrtc.org <mallinath@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d> | Fri Dec 13 12:29:34 2013 +0000 |
tree | 89ebb87b40f3a00207bb7a18be6917ec3c451e4d | |
parent | 6811b6e308d16f160ba4c32650f195d5d3d9a2b1 [diff] [blame] |
Update talk to 58157731. R=wu@webrtc.org TBR=wu@webrc.org Review URL: https://webrtc-codereview.appspot.com/5339005 git-svn-id: http://webrtc.googlecode.com/svn/trunk@5282 4adac7df-926f-26a2-2b94-8c16560cd09d
diff --git a/talk/base/asyncpacketsocket.h b/talk/base/asyncpacketsocket.h index 8ee0a36..29ab55f 100644 --- a/talk/base/asyncpacketsocket.h +++ b/talk/base/asyncpacketsocket.h
@@ -38,7 +38,7 @@ // This structure will have the information about when packet is actually // received by socket. struct PacketTime { - PacketTime() : timestamp(0), not_before(0) {} + PacketTime() : timestamp(-1), not_before(-1) {} PacketTime(int64 timestamp, int64 not_before) : timestamp(timestamp), not_before(not_before) { }