Legend:
- Unmodified
- Added
- Removed
-
trunk/src/samhain.c
r22 r25 1795 1795 /* see whether its time to check files 1796 1796 */ 1797 if (sh.flag.checkSum == SH_CHECK_INIT) 1797 if (sh.flag.checkSum == SH_CHECK_INIT || 1798 (sh.flag.checkSum == SH_CHECK_CHECK && 1799 (sh.flag.isdaemon == S_FALSE && sh.flag.loop == S_FALSE))) 1798 1800 { 1799 1801 flag_check_1 = 1; -
trunk/src/sh_html.c
r22 r25 313 313 sl_strlcat(&entry_orig[entry_size], line, line_size + 1); 314 314 entry_size += add_size; 315 SH_VAL _EQ(entry_orig[entry_size], '\0');315 SH_VALIDATE_EQ(entry_orig[entry_size], '\0'); 316 316 } 317 317 sl_close(fd); -
trunk/src/sh_unix.c
r22 r25 4024 4024 { 4025 4025 #ifdef WITH_TPT 4026 sl_snprintf(str, 128, _("file: %s line: %d page: %d"),4026 sl_snprintf(str, sizeof(str), _("file: %s line: %d page: %d"), 4027 4027 page_list->file, page_list->line, i+1); 4028 4028 sh_error_handle(SH_ERR_INFO, FIL__, __LINE__, i, MSG_E_SUBGEN, … … 4032 4032 ++i; 4033 4033 } 4034 sl_snprintf(str, 128, _("%d pages locked"), i);4034 sl_snprintf(str, sizeof(str), _("%d pages locked"), i); 4035 4035 sh_error_handle(SH_ERR_INFO, FIL__, __LINE__, i, MSG_E_SUBGEN, 4036 4036 str, _("sh_unix_count_mlock")); -
trunk/src/sh_utils.c
r22 r25 205 205 SL_ENTER(_("sh_util_strdup")); 206 206 207 if (str != NULL)208 { 209 210 211 212 } 207 SH_VALIDATE_NE(str, NULL); 208 209 len = sl_strlen(str); 210 p = SH_ALLOC (len + 1); 211 (void) sl_strlcpy (p, str, len+1); 212 213 213 SL_RETURN( p, _("sh_util_strdup")); 214 214 } … … 224 224 ret = *str; 225 225 226 if (ret == NULL) { 227 SL_RETURN(ret, _("sh_util_strsep")); 228 } 226 SH_VALIDATE_NE(ret, NULL); 229 227 230 228 for (c = *str; *c != '\0'; c++) { -
trunk/src/slib.c
r22 r25 577 577 578 578 #if !defined(HOST_IS_I86SOLARIS) 579 #if !defined (_GNU_SOURCE) 579 #if !defined (_GNU_SOURCE) && !defined(__linux__) 580 580 /* flawfinder: ignore */ 581 581 extern int vsnprintf ( char *str, size_t n,
Note:
See TracChangeset
for help on using the changeset viewer.