summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* It's "its."snj2006-04-243-7/+7
|
* fix buffer overflow (CVE-2006-1744), from Debiandrochner2006-04-201-3/+3
|
* Grammar nit. Never mind that it's still not true.groo2006-04-061-1/+1
|
* Coverity CID 2788: If no room gets returned, don't try to place a monster.christos2006-04-021-3/+3
|
* Coverity CID 2791: Fix file pointer leak.christos2006-04-021-2/+4
|
* Coverity CID 2452: possible negative array index; CID 1518 and CID 1517: ↵jnemeth2006-03-301-2/+5
| | | | possible overrun of static array
* Coverity CID 1288: possible negative array indexjnemeth2006-03-301-2/+4
|
* Coverity CID 993: dereference of NULL pointerjnemeth2006-03-301-2/+3
|
* Coverity CID 1293: not checking for an error returnjnemeth2006-03-301-2/+4
|
* Coverity CID 1287: not checking for error returnjnemeth2006-03-301-2/+4
|
* Coverity CID 1327: check for error returnjnemeth2006-03-301-2/+4
|
* Bah! Compare, don't assign!jnemeth2006-03-301-3/+3
|
* Coverity CID 1328: check for error returnjnemeth2006-03-301-2/+4
|
* Coverity CID 1326: check for error returnjnemeth2006-03-301-2/+4
|
* Fix Coverity issue 891 -- FORWARD_NULL.jnemeth2006-03-291-2/+6
| | | Approved by christos@.
* Fix Coverity issues 2366 and 2365 -- REVERSE_INULL.jnemeth2006-03-291-6/+12
| | | Approved by Christos@.
* Fix Coverity issue 2584 -- USE_AFTER_FREE and issue 889 -- FORWARD_NULL.jnemeth2006-03-291-5/+9
| | | Approved by christos@.
* Add missing parens.christos2006-03-221-4/+4
|
* Simplify (Masao Uebayashi)christos2006-03-221-6/+6
|
* Coverity CID 692: Another && that should be ||. Boy...christos2006-03-221-3/+3
|
* Coverity CID 558: && should be obviously ||christos2006-03-221-3/+3
|
* Coverity CID 2735: Remove dead code.christos2006-03-211-4/+2
|
* Coverity CID 2737: Handle linked-lists properly. Use calloc instead of mallocchristos2006-03-211-7/+8
| | | | | so that we don't end up storing garbage accidentally and the next pointer is initialized. If there is an inconsistency in the file abort instead of dereferencing NULL.
* remove duplicate #include <stdlib.h>rtr2006-03-201-3/+2
|
* Now that we use exit(2), we need to include <stdlib.h> for its definition.he2006-03-191-2/+3
|
* include <stdlib.h> to get a prototype for exitchristos2006-03-191-2/+3
|
* Coverity CID 1197: Don't pass -1 to close.christos2006-03-191-3/+4
|
* Coverity CID 1467: Elide static buffer overflow.christos2006-03-191-3/+3
|
* Coverity CID 868: Fix possible NULL deref (after INFTIM passes :-)christos2006-03-191-3/+5
|
* Coverity CID 980: Prevent an impossible NULL point deref.christos2006-03-191-3/+3
|
* Coverity CID 2073: Fix memory leak.christos2006-03-191-2/+4
|
* Coverity CID 999: Prevent NULL deref.christos2006-03-191-3/+4
|
* Coverity CID 695: Remove impossible condition. This changes the scoring aschristos2006-03-191-5/+3
| | | it was probably intended originally.
* Coverity CID 998: Possible NULL pointer deref. Actually this was a bugchristos2006-03-191-5/+6
| | | | where a house to be sold would be skipped. Change the sell loop to be like the buy side loop.
* fix typochristos2006-03-191-3/+3
|
* Coverity CID 1004: Fix NULL deref.christos2006-03-191-2/+4
|
* Coverity CID 1005: Fix NULL deref and incorrect variable use.christos2006-03-191-11/+16
|
* Coverity CID 1443: Prevent static overrun.christos2006-03-191-4/+6
|
* Coverity CID 827: Prevent NULL pointer deref.christos2006-03-181-3/+3
|
* Coverity CID 1699: Fix memory leaks.christos2006-03-181-12/+21
|
* Coverity CID 2544: Fix memory leak.christos2006-03-181-12/+17
|
* Coverity CID 1786: Close file.christos2006-03-181-2/+3
|
* Coverity CID 570: Remove impossible check.christos2006-03-181-3/+3
|
* Coverity CID 1195: Check for possible negative index.christos2006-03-181-3/+6
|
* Coverity CID 777: Fix NULL pointer deref and de-obfuscate code.christos2006-03-181-7/+7
|
* Coverity CID 1230: Remove spurious close().christos2006-03-181-3/+2
|
* Coverity CID 1294: Avoid negative variable used as index.christos2006-03-181-3/+4
|
* Coverity CID 1295: Don't allow cchose to return a negative number. It ischristos2006-03-181-2/+6
| | | used as an index.
* fclose() open FILE * even though we are returning to fail anyway.rtr2006-03-181-3/+5
| | | silences coverity, CID 1590 / run 5
* don't access out of bounds element of static alloc array.rtr2006-03-181-3/+3
| | | | | found by Coverity, CID 1519 / Run 5 XXX possible that intention was to start with i = 0.