summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Kendrick <rob.kendrick@codethink.co.uk>2016-01-13 16:35:24 +0000
committerRob Kendrick <rob.kendrick@codethink.co.uk>2016-01-13 16:35:24 +0000
commit93fbed0f2cdbd84def2af8c444f2a63a7e9f5f22 (patch)
treebc15c07fd9ce04f3913294be5acb724afece7812
parent1886aaf6af39d8814033c896b300e300e292b329 (diff)
downloadnetsurf-93fbed0f2cdbd84def2af8c444f2a63a7e9f5f22.tar.gz
netsurf-93fbed0f2cdbd84def2af8c444f2a63a7e9f5f22.tar.bz2
Style fixes
-rw-r--r--gtk/fetch.c18
1 files changed, 11 insertions, 7 deletions
diff --git a/gtk/fetch.c b/gtk/fetch.c
index 13ffceb86..06770b6b2 100644
--- a/gtk/fetch.c
+++ b/gtk/fetch.c
@@ -1,5 +1,6 @@
/*
- * Copyright 2014 vincent Sanders <vince@netsurf-browser.org>
+ * Copyright 2007, 2014 Vincent Sanders <vince@netsurf-browser.org>
+ * Copyright 2007 Rob Kendrick <rjek@netsurf-browser.org>
*
* This file is part of NetSurf, http://www.netsurf-browser.org/
*
@@ -37,6 +38,9 @@
#include "gtk/resources.h"
#include "gtk/fetch.h"
+#define HASH_SIZE 117
+#define MAX_LINE_LEN 256
+
static struct hash_table *mime_hash = NULL;
void gtk_fetch_filetype_init(const char *mimefile)
@@ -44,7 +48,7 @@ void gtk_fetch_filetype_init(const char *mimefile)
struct stat statbuf;
FILE *fh = NULL;
- mime_hash = hash_create(117);
+ mime_hash = hash_create(HASH_SIZE);
/* first, check to see if /etc/mime.types in preference */
@@ -78,13 +82,13 @@ void gtk_fetch_filetype_init(const char *mimefile)
return;
}
- while (!feof(fh)) {
- char line[256], *ptr, *type, *ext;
+ while (feof(fh) == 0) {
+ char line[MAX_LINE_LEN], *ptr, *type, *ext;
- if (fgets(line, 256, fh) == NULL)
+ if (fgets(line, sizeof(line), fh) == NULL)
break;
- if (!feof(fh) && line[0] != '#') {
+ if ((feof(fh) == 0) && line[0] != '#') {
ptr = line;
/* search for the first non-whitespace character */
@@ -120,7 +124,7 @@ void gtk_fetch_filetype_init(const char *mimefile)
ptr++;
}
- while(true) {
+ while (true) {
ext = ptr;
/* search for the first whitespace char or