Skip to content
Snippets Groups Projects
  1. Feb 04, 2017
  2. Feb 03, 2017
  3. Feb 02, 2017
  4. Feb 01, 2017
  5. Jan 31, 2017
  6. Jan 30, 2017
  7. Jan 29, 2017
    • Jake's avatar
      Restructured packet and command parsing · c9879e71
      Jake authored
      Prepared for parsing the new data formats. Data isn't formatted
      or parsed yet, though.
      
      No more memory leaks! Unfortunately each memory leak was replaced
      by a potential buffer overflow. Basically, the code was riddled
      with functions that accept a char ** data, which
      is malloced and then formatted. This was then leaked.
      Now, it accepts a char * data, which is allocated on the stack
      by the calling function. However, there is no bounds checking,
      because that is slightly more involved.
      Unverified
      c9879e71
Loading