Browse Source

Revert "Fixing a theoretical buffer overflow which was reported by Roland Illig"

This reverts commit f148fc29d2737eef087a6ce62d6369b1260a5327.
Patrick Winnertz 16 years ago
parent
commit
d7fa1ecdb4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      mhl/string.h

+ 1 - 1
mhl/string.h

@@ -71,7 +71,7 @@ static inline char* __mhl_str_concat_hlp(const char* base, ...)
     va_start(args,base);
     char* a;
     /* note: we use ((char*)(1)) as terminator - NULL is a valid argument ! */
-    while ((a = va_arg(args, char*))!=(char*)1 && count <= 31 )
+    while ((a = va_arg(args, char*))!=(char*)1)
     {
 	if (a)
 	{