From ad12c46af58c9a03d02c73afbfaac308e6fcc0db Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Tue, 29 Mar 2011 20:50:31 +0000 Subject: remove extraneous logging fix windows path_to_url coping with NULL input and allocation errors. remove forced verbose logging svn path=/trunk/netsurf/; revision=12147 --- utils/filepath.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'utils') diff --git a/utils/filepath.c b/utils/filepath.c index 7b85e4c9e..21a965949 100644 --- a/utils/filepath.c +++ b/utils/filepath.c @@ -33,7 +33,6 @@ #include "utils/config.h" #include "utils/filepath.h" -#include "utils/log.h" /** maximum number of elements in the resource vector */ #define MAX_RESPATH 128 @@ -118,8 +117,6 @@ char *filepath_sfind(char **respathv, char *filepath, const char *filename) while (respathv[respathc] != NULL) { if (filepath_sfindfile(filepath, "%s/%s", respathv[respathc], filename) != NULL) { - LOG(("ret\"%s\"",filepath)); - return filepath; } @@ -147,8 +144,6 @@ char *filepath_find(char **respathv, const char *filename) if (ret == NULL) free(filepath); - LOG(("ret\"%s\"",ret)); - return ret; } -- cgit v1.2.3