Blocked revisions 80731-80736,80739,80741-80744,80746-80747,80807-80812,80815-80822,80843,80874 via svnmerge

........
  r80731 | brett.cannon | 2010-05-03 18:41:23 -0500 (Mon, 03 May 2010) | 4 lines

  Remove unneeded variable initialization.

  Found using Clang's static analyzer.
........
  r80732 | brett.cannon | 2010-05-03 18:41:51 -0500 (Mon, 03 May 2010) | 4 lines

  Remove an unused variable.

  Found using Clang's static analyzer.
........
  r80733 | brett.cannon | 2010-05-03 18:42:40 -0500 (Mon, 03 May 2010) | 3 lines

  Clean up whitespace and remove unneeded variable initialization as found by
  Clang.
........
  r80734 | brett.cannon | 2010-05-03 18:43:49 -0500 (Mon, 03 May 2010) | 4 lines

  Remove unneeded variable mutation and initializations.

  Found using Clang's static analyzer.
........
  r80735 | brett.cannon | 2010-05-03 18:44:54 -0500 (Mon, 03 May 2010) | 4 lines

  Remove unneeded variable assignment.

  Found using Clang's static analyzer.
........
  r80736 | brett.cannon | 2010-05-03 18:51:28 -0500 (Mon, 03 May 2010) | 4 lines

  Remove unused variables and a variable initialization.

  Found using Clang's static analyzer.
........
  r80739 | brett.cannon | 2010-05-03 19:36:00 -0500 (Mon, 03 May 2010) | 4 lines

  Prevent a possible NULL de-reference and an unneeded variable assignment.

  Found using Clang's static analyzer.
........
  r80741 | brett.cannon | 2010-05-03 19:48:11 -0500 (Mon, 03 May 2010) | 4 lines

  Fix a Py_DECREF to a Py_XDECREF.

  Found using Clang's static analyzer.
........
  r80742 | brett.cannon | 2010-05-03 19:52:41 -0500 (Mon, 03 May 2010) | 4 lines

  Strip out extraneous whitespace, cast a some `const char *` to `void *` when
  passed to free() and make a `char *` to a `const char *` as found by Clang's
  static analyzer.
........
  r80743 | brett.cannon | 2010-05-03 19:57:44 -0500 (Mon, 03 May 2010) | 4 lines

  Remove an unneeded variable assignment.

  Found using Clang's static analyzer.
........
  r80744 | brett.cannon | 2010-05-03 20:01:00 -0500 (Mon, 03 May 2010) | 2 lines

  Fix some whitespace.
........
  r80746 | brett.cannon | 2010-05-03 20:16:51 -0500 (Mon, 03 May 2010) | 4 lines

  Remove an unneeded variable and assignment.

  Found using Clang's static analyzer.
........
  r80747 | brett.cannon | 2010-05-03 20:23:36 -0500 (Mon, 03 May 2010) | 4 lines

  Pull a NULL pointer check up to cover more cases in the function.

  Found using Clang's static analyzer.
........
  r80807 | brett.cannon | 2010-05-05 15:14:27 -0500 (Wed, 05 May 2010) | 4 lines

  Remove an unnecessary variable.

  Found using Clang's static analyzer.
........
  r80808 | brett.cannon | 2010-05-05 15:15:14 -0500 (Wed, 05 May 2010) | 2 lines

  Remove extraneous whitespace.
........
  r80809 | brett.cannon | 2010-05-05 15:16:09 -0500 (Wed, 05 May 2010) | 4 lines

  Remove an unneeded variable increment.

  Found using Clang's static analyzer.
........
  r80810 | brett.cannon | 2010-05-05 15:16:50 -0500 (Wed, 05 May 2010) | 4 lines

  Remove an unneeded variable.

  Found using Clang's static analyzer.
........
  r80811 | brett.cannon | 2010-05-05 15:18:23 -0500 (Wed, 05 May 2010) | 4 lines

  Remove an unneeded variable assignment.

  Found using Clang's static analyzer.
........
  r80812 | brett.cannon | 2010-05-05 15:19:26 -0500 (Wed, 05 May 2010) | 4 lines

  Remove an unneeded assignment.

  Found using Clang's static analyzer.
........
  r80815 | brett.cannon | 2010-05-05 15:25:47 -0500 (Wed, 05 May 2010) | 1 line

  Fix whitespace.
........
  r80816 | brett.cannon | 2010-05-05 15:26:58 -0500 (Wed, 05 May 2010) | 4 lines

  Remove an unneeded variable and fix a little whitespace.

  Found using Clang's static analyzer.
........
  r80817 | brett.cannon | 2010-05-05 15:27:49 -0500 (Wed, 05 May 2010) | 4 lines

  Remove an unneeded variable increment.

  Found using Clang's static analyzer.
........
  r80818 | brett.cannon | 2010-05-05 15:30:30 -0500 (Wed, 05 May 2010) | 8 lines

  Remove two unneeded branches to an 'if' statement by applying De Morgan's Law
  and creating a single 'if' statement along with a NULL default value for a
  variable.

  Also clean up a bunch of whitespace.

  Found using Clang's static analyzer.
........
  r80819 | brett.cannon | 2010-05-05 15:35:24 -0500 (Wed, 05 May 2010) | 4 lines

  Remove an unnecessary variable assignment.

  Found using Clang's static analyzer.
........
  r80820 | brett.cannon | 2010-05-05 15:38:52 -0500 (Wed, 05 May 2010) | 4 lines

  Change to a Py_XDECREF and fix some whitespace.

  Found using Clang's static analyzer.
........
  r80821 | brett.cannon | 2010-05-05 15:50:03 -0500 (Wed, 05 May 2010) | 4 lines

  Explicitly add stdio.h and string.h to make strtod.c work standalone.

  Found using Clang's static analyzer.
........
  r80822 | brett.cannon | 2010-05-05 15:53:20 -0500 (Wed, 05 May 2010) | 4 lines

  Remove an unneeded variable assignment.

  Found using Clang's static analyzer.
........
  r80843 | brett.cannon | 2010-05-05 18:11:08 -0500 (Wed, 05 May 2010) | 1 line

  Revert a change where an expression is not needed now, but could be in the future.
........
  r80874 | brett.cannon | 2010-05-06 12:56:36 -0500 (Thu, 06 May 2010) | 5 lines

  Add back in a line that was unneeded which advanced a pointer, but commented
  out as it is currently unneeded.

  This effectively adds back in the line removed in r80809 as a comment.
........
This commit is contained in:
Benjamin Peterson 2010-06-27 21:05:30 +00:00
parent a82addb5f3
commit c543f75490

Diff Content Not Available