1. 11 10月, 2019 2 次提交
  2. 10 10月, 2019 1 次提交
  3. 09 10月, 2019 2 次提交
  4. 29 9月, 2019 2 次提交
  5. 27 9月, 2019 2 次提交
  6. 24 9月, 2019 3 次提交
  7. 23 9月, 2019 2 次提交
  8. 20 9月, 2019 1 次提交
  9. 12 9月, 2019 3 次提交
  10. 06 9月, 2019 3 次提交
  11. 05 9月, 2019 3 次提交
  12. 29 8月, 2019 1 次提交
  13. 24 8月, 2019 6 次提交
    • S
      fix the issue #404 · 9465d94c
      slguan 提交于
      9465d94c
    • S
      fix the issue #404 · 263bab87
      slguan 提交于
      263bab87
    • S
      fix the issue $404 · a83cdd80
      slguan 提交于
      a83cdd80
    • S
      fix the issue #404 · 89b72283
      slguan 提交于
      89b72283
    • weixin_48148422's avatar
      fix several issues in string token parsing · 693ee662
      weixin_48148422 提交于
      1. the shell should not remove escape sequence \' and \" in a string.
      2. `tsParseTime` should not unescape the next string token (this issue
      appears after the first issue was fixed).
      3. `value[4] != '-'` in `tsParseTime` crashes in rare case if `value[4]`
      is in unallocated virtual memory.
      4. `operator[x]` and `delimiter[x]` may result in unexcepted behavior
      as string is utf-8 encoded and `x < 0` could be true.
      5. changes the behavior of `tscGetToken` a little: now, unescaped single
      quotation is allowed in double quoted strings and unescaped double quotation
      is allowed in single quoted strings.
      6. minor performance improvements and other improvements.
      693ee662
    • weixin_48148422's avatar
      fix strtolower · a10c0e97
      weixin_48148422 提交于
      a10c0e97
  14. 23 8月, 2019 1 次提交
  15. 22 8月, 2019 4 次提交
  16. 21 8月, 2019 1 次提交
  17. 19 8月, 2019 1 次提交
  18. 18 8月, 2019 2 次提交
    • weixin_48148422's avatar
      fix issue #367 · 641ee305
      weixin_48148422 提交于
      the basic idea is to change clean up procedure to 2 steps,
      the 1st step only marks the time controller as to be cleaned up,
      the 2nd step executes in the timer thread and does the
      actual job to avoid race.
      
      I also change `pCtrl->ticks = rand() / pCtrl->maxTicks` to
      `pCtrl->ticks = rand() % pCtrl->maxTicks`, because I think
      this is a typo but not sure about this.
      641ee305
    • weixin_48148422's avatar
      #368: fix 2 issues in tmrMemPool · 2e864954
      weixin_48148422 提交于
      2e864954