1. 09 Aug, 2018 1 commit
  2. 07 Aug, 2018 1 commit
  3. 26 Jul, 2018 1 commit
  4. 27 May, 2018 1 commit
  5. 26 May, 2018 1 commit
  6. 18 May, 2018 1 commit
  7. 09 Feb, 2018 1 commit
  8. 02 Feb, 2018 1 commit
  9. 22 Oct, 2017 1 commit
  10. 25 Dec, 2016 1 commit
  11. 21 Feb, 2016 2 commits
  12. 18 Feb, 2016 1 commit
  13. 07 Feb, 2016 1 commit
  14. 04 Feb, 2016 1 commit
    • Luca Boccassi's avatar
      Problem: Valgrind reports read of freed memory · a9aeb492
      Luca Boccassi authored
      Solution: when iterating over a map and conditionally deleting
      elements, an erased iterator gets invalidated. Call erase using postfix
      increment on iterator to avoid using an invalid element in the next
      iteration.
      a9aeb492
  15. 30 Jan, 2016 1 commit
    • Jean-Christophe Fillion-Robin's avatar
      Style: Fix unused parameter compilation warnings · f329252d
      Jean-Christophe Fillion-Robin authored
      This commit addresses the following warnings reported on gcc 5.2.1. In
      the future, this will help reduce the "noise" and help catch warnings
      revealing a serious problem.
      
      8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---
      /path/to/libzmq/src/options.cpp:1048:36: warning: unused parameter ‘option_’ [-Wunused-parameter]
       bool zmq::options_t::is_valid (int option_) const
                                          ^
      
      /path/to/libzmq/src/plain_client.cpp:146:30: warning: unused parameter ‘cmd_data’ [-Wunused-parameter]
               const unsigned char *cmd_data, size_t data_size)
                                    ^
      
      /path/to/libzmq/src/plain_client.cpp:146:30: warning: unused parameter ‘cmd_data’ [-Wunused-parameter]
               const unsigned char *cmd_data, size_t data_size)
                                    ^
      
      /path/to/libzmq/src/socket_base.cpp:1445:44: warning: unused parameter ‘group_’ [-Wunused-parameter]
       int zmq::socket_base_t::xjoin (const char *group_)
                                                  ^
      /path/to/libzmq/src/socket_base.cpp:1451:45: warning: unused parameter ‘group_’ [-Wunused-parameter]
       int zmq::socket_base_t::xleave (const char *group_)
                                                   ^
      
      /path/to/libzmq/src/radio.cpp:145:33: warning: unused parameter ‘msg_’ [-Wunused-parameter]
       int zmq::radio_t::xrecv (msg_t *msg_)
                                       ^
      /path/to/libzmq/src/dish.cpp:164:32: warning: unused parameter ‘msg_’ [-Wunused-parameter]
       int zmq::dish_t::xsend (msg_t *msg_)
                                      ^
      
      /path/to/libzmq/tests/test_msg_ffn.cpp:32:16: warning: unused parameter ‘data’ [-Wunused-parameter]
       void ffn(void *data, void *hint) {
                      ^
      
      /path/to/libzmq/tests/test_timers.cpp:50:19: warning: unused parameter ‘timer_id’ [-Wunused-parameter]
       void handler (int timer_id, void* arg)
                         ^
      8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---
      f329252d
  16. 29 Jan, 2016 4 commits
  17. 28 Jan, 2016 1 commit
  18. 27 Jan, 2016 1 commit