timer_wrap: add sanity check assert
authorBen Noordhuis <info@bnoordhuis.nl>
Fri, 14 Oct 2011 15:00:37 +0000 (15:00 +0000)
committerBen Noordhuis <info@bnoordhuis.nl>
Fri, 14 Oct 2011 15:01:26 +0000 (15:01 +0000)
src/timer_wrap.cc

index cfae78d..99db0c5 100644 (file)
@@ -67,7 +67,10 @@ class TimerWrap : public HandleWrap {
   TimerWrap(Handle<Object> object)
       : HandleWrap(object, (uv_handle_t*) &handle_) {
     active_ = false;
+
     int r = uv_timer_init(uv_default_loop(), &handle_);
+    assert(r == 0);
+
     handle_.data = this;
 
     // uv_timer_init adds a loop reference. (That is, it calls uv_ref.) This