X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?p=ossec-hids.git;a=blobdiff_plain;f=src%2Fos_regex%2Fos_regex_strbreak.c;h=e6905c01b250f1e6a8a0d3e9b9327f223ce5bf8f;hp=2294c2c4cd69c20f684ec75c598e2aeae9f7f5a6;hb=6ef2f786c6c8ead94841b5f93baf9f43421f08c8;hpb=301048b51990573e58a30dc4a5bb4ec285cad554 diff --git a/src/os_regex/os_regex_strbreak.c b/src/os_regex/os_regex_strbreak.c index 2294c2c..e6905c0 100755 --- a/src/os_regex/os_regex_strbreak.c +++ b/src/os_regex/os_regex_strbreak.c @@ -24,7 +24,7 @@ char **OS_StrBreak(char match, char *str, int size) { int count = 0; int i = 0; - + char *tmp_str = str; char **ret; @@ -40,7 +40,7 @@ char **OS_StrBreak(char match, char *str, int size) /* Memory error. Should provice a better way to detect it */ return(NULL); } - + /* Allocating memory to null */ while(i <= size) { @@ -62,13 +62,13 @@ char **OS_StrBreak(char match, char *str, int size) goto error; } - /* Copying the string */ + /* Copying the string */ ret[count][i-1] = '\0'; strncpy(ret[count],tmp_str,i-1); tmp_str = ++str; count++; - i=0; + i=0; continue; }