1. 07 9月, 2015 1 次提交
  2. 06 9月, 2015 2 次提交
  3. 05 9月, 2015 2 次提交
    • B
      Supply a build rule for the recently added nptest · 18716ba2
      Benjamin Kaduk 提交于
      Commit d4ab70f2 added a test program
      to check that the NULL pointer is represented as all zero bits, but
      did not specify a build rule for that new executable.  On many platforms,
      the implicit rule sufficed, since nptest is a very simple program, but
      for at least darwin-i386-cc, an explicit rule is needed.  On darwin-i386-cc,
      the implicit rule targetted a 64-bit executable, but the object file
      containing the definition of main was a 32-bit object, which the linker
      excluded from consideration, resulting in a link failure due to no
      definition for _main.
      
      Add the missing build rule to fix the build on such platforms.
      Signed-off-by: NRich Salz <rsalz@openssl.org>
      Reviewed-by: NDr. Stephen Henson <steve@openssl.org>
      18716ba2
    • R
      Test for NULL ptr == 0 · d4ab70f2
      Rich Salz 提交于
      Add a test to ensure that "char *p = NULL" is equivalent to
      all-bytes-zero.
      Reviewed-by: NTim Hudson <tjh@openssl.org>
      d4ab70f2
  4. 04 9月, 2015 2 次提交
  5. 03 9月, 2015 1 次提交
  6. 26 8月, 2015 1 次提交
  7. 14 8月, 2015 1 次提交
  8. 12 8月, 2015 3 次提交
  9. 03 8月, 2015 2 次提交
  10. 27 7月, 2015 1 次提交
  11. 09 7月, 2015 1 次提交
  12. 08 7月, 2015 1 次提交
  13. 24 6月, 2015 1 次提交
  14. 10 6月, 2015 1 次提交
  15. 29 5月, 2015 1 次提交
  16. 26 5月, 2015 1 次提交
  17. 23 5月, 2015 1 次提交
    • R
      Fix the update target and remove duplicate file updates · 0f539dc1
      Richard Levitte 提交于
      We had updates of certain header files in both Makefile.org and the
      Makefile in the directory the header file lived in.  This is error
      prone and also sometimes generates slightly different results (usually
      just a comment that differs) depending on which way the update was
      done.
      
      This removes the file update targets from the top level Makefile, adds
      an update: target in all Makefiles and has it depend on the depend: or
      local_depend: targets, whichever is appropriate, so we don't get a
      double run through the whole file tree.
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      0f539dc1
  18. 20 5月, 2015 1 次提交
  19. 16 5月, 2015 1 次提交
  20. 14 5月, 2015 2 次提交
  21. 13 5月, 2015 2 次提交
  22. 05 5月, 2015 1 次提交
    • R
      Use safer sizeof variant in malloc · b4faea50
      Rich Salz 提交于
      For a local variable:
              TYPE *p;
      Allocations like this are "risky":
              p = OPENSSL_malloc(sizeof(TYPE));
      if the type of p changes, and the malloc call isn't updated, you
      could get memory corruption.  Instead do this:
              p = OPENSSL_malloc(sizeof(*p));
      Also fixed a few memset() calls that I noticed while doing this.
      Reviewed-by: NRichard Levitte <levitte@openssl.org>
      b4faea50
  23. 22 4月, 2015 1 次提交
  24. 09 4月, 2015 2 次提交
  25. 02 4月, 2015 1 次提交
  26. 01 4月, 2015 1 次提交
  27. 29 3月, 2015 1 次提交
  28. 24 3月, 2015 1 次提交
  29. 26 2月, 2015 1 次提交
  30. 07 2月, 2015 1 次提交
  31. 05 2月, 2015 1 次提交