1. 06 May, 2016 4 commits
  2. 04 May, 2016 3 commits
  3. 03 May, 2016 3 commits
  4. 01 May, 2016 1 commit
  5. 30 Apr, 2016 1 commit
  6. 29 Apr, 2016 10 commits
  7. 28 Apr, 2016 6 commits
  8. 27 Apr, 2016 4 commits
  9. 26 Apr, 2016 2 commits
  10. 22 Apr, 2016 4 commits
  11. 21 Apr, 2016 2 commits
    • Feng Xiao's avatar
      Merge pull request #1438 from xfxyjwf/docs · 034294bf
      Feng Xiao authored
      Add a docs directory and move the third-party add-ons page here.
      034294bf
    • Petr Prokhorenkov's avatar
      Fix bug with silent message corruption in LITE_RUNTIME. · f4f9aec5
      Petr Prokhorenkov authored
      A protobuf message will be corrupted in the following scenario:
        1. Use LITE_RUNTIME.
        2. Have an optional enum field following some other field.
        3. Update protocol by adding new values to the enum.
        4. Have an old client parse and serialize a message having enum field
            set to a value the client does not understand.
        5. Field preceeding the enum is now corrupted.
      
      The bug is due to the fact that optimized fallthrough in parser code
      does not update variablle 'tag' when jumping to the parser code for the
      next field.
      f4f9aec5