about summary refs log tree commit diff
path: root/html.c
diff options
context:
space:
mode:
authorLukas Fleischer <cgit@cryptocrack.de>2013-04-06 13:30:54 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2013-04-08 15:45:34 +0200
commit3edfd83db61f5dd2f046e6e8c21dfceeae03ed82 (patch)
treeb29785135661b5f7bbb314b521b36351e021f142 /html.c
parentAlways #include corresponding .h in .c files (diff)
downloadcgit-pink-3edfd83db61f5dd2f046e6e8c21dfceeae03ed82.tar.gz
cgit-pink-3edfd83db61f5dd2f046e6e8c21dfceeae03ed82.zip
html.c: Replace strdup() with xstrdup()
Use the xstrdup() wrapper which already bails out if strdup() returns a
NULL pointer.

Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de>
Diffstat (limited to '')
-rw-r--r--html.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/html.c b/html.c
index 1104f97..8c45ba6 100644
--- a/html.c
+++ b/html.c
@@ -6,6 +6,7 @@
  *   (see COPYING for full license text)
  */
 
+#include "cgit.h"
 #include "html.h"
 #include <unistd.h>
 #include <stdio.h>
@@ -307,11 +308,7 @@ int http_parse_querystring(const char *txt_, void (*fn)(const char *name, const
 	if (!txt_)
 		return 0;
 
-	o = t = txt = strdup(txt_);
-	if (t == NULL) {
-		printf("Out of memory\n");
-		exit(1);
-	}
+	o = t = txt = xstrdup(txt_);
 	while ((c=*t) != '\0') {
 		if (c == '=') {
 			*t = '\0';