Changeset 5745
- Timestamp:
- 06/22/09 13:47:50 (4 years ago)
- Location:
- lm-sensors/branches/lm-sensors-2.10
- Files:
-
- 2 modified
-
CHANGES (modified) (1 diff)
-
prog/eepromer/eepromer.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/branches/lm-sensors-2.10/CHANGES
r5738 r5745 8 8 Module i2c-piix4: ATI SB800 is not actually supported 9 9 Module it87: Properly decode -128 degrees C (2.6 backport) 10 Program eepromer: Fix array initialization overrun 10 11 Program sensord: Fix a memory leak when a chip name is provided 11 12 Program sensors: Fix a memory leak when a chip name is provided -
lm-sensors/branches/lm-sensors-2.10/prog/eepromer/eepromer.c
r4231 r5745 403 403 k=0; 404 404 405 for(j=0;j<=MAX_BLK_SIZE;j++)buf[j]=0; 405 for(j=0;j<MAX_BLK_SIZE;j++) 406 buf[j]=0; 406 407 407 408 … … 430 431 addr_cnt=addr_cnt + i + (delka==1?1:0); //+i 431 432 432 for(j=0;j<=MAX_BLK_SIZE;j++)buf[j]=0; 433 for(j=0;j<MAX_BLK_SIZE;j++) 434 buf[j]=0; 433 435 434 436 i=0; … … 509 511 k=0; 510 512 511 for(j=0;j<=MAX_BLK_SIZE;j++)buf[j]=0; 513 for(j=0;j<MAX_BLK_SIZE;j++) 514 buf[j]=0; 512 515 513 516
