Changeset 481 for trunk/src/sh_log_check.c
- Timestamp:
- Jul 18, 2015, 5:06:52 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/sh_log_check.c
r425 r481 143 143 size_t plen = strlen(entry->d_name) + 1; 144 144 145 if (S L_TRUE == sl_ok_adds(plen, dlen))145 if (S_TRUE == sl_ok_adds(plen, dlen)) 146 146 { 147 147 plen += dlen; … … 180 180 plen = strlen(dir); 181 181 182 if (S L_TRUE == sl_ok_adds(plen, 130))182 if (S_TRUE == sl_ok_adds(plen, 130)) 183 183 { 184 184 plen += 130; /* 64 + 64 + 2 */ … … 500 500 * by longjmp' warning. And no, 'volatile' proved insufficient. 501 501 */ 502 static void * sh_dummy_thisfile = NULL;502 void * sh_dummy_502_thisfile = NULL; 503 503 504 504 void sh_check_watches() … … 512 512 * Avoids the 'clobbered by longjmp' warning. 513 513 */ 514 sh_dummy_ thisfile = (void*) &thisfile;514 sh_dummy_502_thisfile = (void*) &thisfile; 515 515 516 516 while (thisfile)
Note:
See TracChangeset
for help on using the changeset viewer.