mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-24 23:39:51 +03:00
[project @ 2005-10-01 23:27:22 by adrianl]
Pedantic corrections svn path=/import/netsurf/; revision=1868
This commit is contained in:
parent
7a81755bca
commit
8a88130630
@ -84,7 +84,7 @@ static struct hostname_data *url_store_find_hostname(const char *url) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* no hostname is available: create a new one */
|
/* no hostname is available: create a new one */
|
||||||
result = calloc(sizeof(struct hostname_data), 1);
|
result = calloc(1, sizeof(struct hostname_data));
|
||||||
if (!result)
|
if (!result)
|
||||||
return NULL;
|
return NULL;
|
||||||
result->hostname = hostname;
|
result->hostname = hostname;
|
||||||
@ -171,7 +171,7 @@ struct url_content *url_store_find(const char *url) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* no URL is available: create a new one */
|
/* no URL is available: create a new one */
|
||||||
result = calloc(sizeof(struct url_data), 1);
|
result = calloc(1, sizeof(struct url_data));
|
||||||
if (!result)
|
if (!result)
|
||||||
return NULL;
|
return NULL;
|
||||||
result->data.url = malloc(url_length + 1);
|
result->data.url = malloc(url_length + 1);
|
||||||
@ -400,7 +400,7 @@ char *url_store_match_string(const char *text) {
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Loads the current contents of the URL store to disk
|
* Loads the current contents of the URL store from disk
|
||||||
*
|
*
|
||||||
* \param file the file to load options from
|
* \param file the file to load options from
|
||||||
*/
|
*/
|
||||||
@ -461,7 +461,7 @@ void url_store_load(const char *file) {
|
|||||||
break;
|
break;
|
||||||
if (s[strlen(s) - 1] == '\n')
|
if (s[strlen(s) - 1] == '\n')
|
||||||
s[strlen(s) - 1] = '\0';
|
s[strlen(s) - 1] = '\0';
|
||||||
result = calloc(sizeof(struct url_data), 1);
|
result = calloc(1, sizeof(struct url_data));
|
||||||
if (!result)
|
if (!result)
|
||||||
break;
|
break;
|
||||||
result->data.url_length = strlen(s);
|
result->data.url_length = strlen(s);
|
||||||
|
Loading…
Reference in New Issue
Block a user