cgit

commit 3edfd83db61f5dd2f046e6e8c21dfceeae03ed82

Author: Lukas Fleischer <cgit@cryptocrack.de>

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>

 html.c | 7 ++-----


diff --git a/html.c b/html.c
index 1104f97faeec025f19ecf0a27f6b00a3af8b0de1..8c45ba69daa1482456172281850b29689152581a 100644
--- a/html.c
+++ b/html.c
@@ -6,6 +6,7 @@  * Licensed under GNU General Public License v2
  *   (see COPYING for full license text)
  */
 
+#include "cgit.h"
 #include "html.h"
 #include <unistd.h>
 #include <stdio.h>
@@ -307,11 +308,7 @@
 	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';