new upstream release (3.3.0); modify package compatibility for Stretch
[ossec-hids.git] / src / os_regex / os_regex_strbreak.c
old mode 100755 (executable)
new mode 100644 (file)
index d04f355..dde2d23
@@ -1,5 +1,3 @@
-/*   $OSSEC, os_regex_strbreak.c, v0.3, 2005/04/05, Daniel B. Cid$   */
-
 /* Copyright (C) 2009 Trend Micro Inc.
  * All right reserved.
  *
@@ -9,7 +7,6 @@
  * Foundation
  */
 
-
 #include <stdio.h>
 #include <string.h>
 #include <stdlib.h>
 #include "os_regex_internal.h"
 
 
-/** char **OS_StrBreak(char match, char *str, int size) v0.2
- * Split a string into multiples pieces, divided by a char "match".
+/* Split a string into multiples pieces, divided by a char "match".
  * Returns a NULL terminated array on success or NULL on error.
  */
 char **OS_StrBreak(char match, const char *str, size_t size)
 {
     size_t count = 0;
     size_t i = 0;
-
     const char *tmp_str = str;
-
     char **ret;
 
     /* We can't do anything if str is null */
-    if(str == NULL)
-        return(NULL);
+    if (str == NULL) {
+        return (NULL);
+    }
 
-    ret = (char **)calloc(size+1, sizeof(char *));
+    ret = (char **)calloc(size + 1, sizeof(char *));
 
-    if(ret == NULL)
-    {
-        /* Memory error. Should provice a better way to detect it */
-        return(NULL);
+    if (ret == NULL) {
+        /* Memory error. Should provide a better way to detect it */
+        return (NULL);
     }
 
-    /* Allocating memory to null */
-    while(i <= size)
-    {
+    /* Allocate memory to null */
+    while (i <= size) {
         ret[i] = NULL;
         i++;
     }
     i = 0;
 
-    /* */
-    while(*str != '\0')
-    {
+    while (*str != '\0') {
         i++;
-        if((count < size-1)&&(*str == match))
-        {
-            ret[count] = (char *)calloc(i,sizeof(char));
+        if ((count < size - 1) && (*str == match)) {
+            ret[count] = (char *)calloc(i, sizeof(char));
 
-            if(ret[count] == NULL)
-            {
+            if (ret[count] == NULL) {
                 goto error;
             }
 
-            /* Copying the string */
-            ret[count][i-1] = '\0';
-            strncpy(ret[count],tmp_str,i-1);
+            /* Copy the string */
+            ret[count][i - 1] = '\0';
+            strncpy(ret[count], tmp_str, i - 1);
 
             tmp_str = ++str;
             count++;
-            i=0;
+            i = 0;
 
             continue;
         }
@@ -79,44 +68,39 @@ char **OS_StrBreak(char match, const char *str, size_t size)
 
 
     /* Just do it if count < size */
-    if(count < size)
-    {
-        ret[count] = (char *)calloc(i+1,sizeof(char));
+    if (count < size) {
+        ret[count] = (char *)calloc(i + 1, sizeof(char));
 
-        if(ret[count] == NULL)
-        {
+        if (ret[count] == NULL) {
             goto error;
         }
 
-        /* Copying the string */
+        /* Copy the string */
         ret[count][i] = '\0';
-        strncpy(ret[count],tmp_str,i);
+        strncpy(ret[count], tmp_str, i);
 
         count++;
 
-        /* Making sure it is null terminated */
+        /* Make sure it is null terminated */
         ret[count] = NULL;
 
-        return(ret);
+        return (ret);
     }
 
     /* We shouldn't get to this point
      * Just let "error" handle that
      */
 
-    error:
-        i = 0;
+error:
+    i = 0;
 
-        /* Deallocating the memory whe can */
-        while(i < count)
-        {
-            free(ret[i]);
-            i++;
-        }
+    while (i < count) {
+        free(ret[i]);
+        i++;
+    }
 
-        free(ret);
-        return(NULL);
+    free(ret);
+    return (NULL);
 
 }
 
-/* EOF */