commit 3642cd25e4eedbe2c3c2981eac03422b26a8eda0
parent 1a94d7c05bfbc69be14d3e4fd53d8e95972ff007
Author: default <nobody@localhost>
Date: Mon, 10 Jul 2023 18:04:59 +0200
Simplified inbox_list().
Diffstat:
M | data.c | | | 22 | +++++++--------------- |
1 file changed, 7 insertions(+), 15 deletions(-)
diff --git a/data.c b/data.c
@@ -1725,13 +1725,9 @@ void inbox_add(const char *inbox)
xs *fn = xs_fmt("%s/inbox/%s", srv_basedir, md5);
FILE *f;
- if (strlen(inbox) < 256 && (f = fopen(fn, "w")) != NULL) {
- pthread_mutex_lock(&data_mutex);
-
+ if ((f = fopen(fn, "w")) != NULL) {
fprintf(f, "%s\n", inbox);
fclose(f);
-
- pthread_mutex_unlock(&data_mutex);
}
}
@@ -1760,18 +1756,14 @@ xs_list *inbox_list(void)
FILE *f;
if ((f = fopen(v, "r")) != NULL) {
- char line[256];
-
- if (fgets(line, sizeof(line), f)) {
- fclose(f);
+ xs *line = xs_readline(f);
- int i = strlen(line);
-
- if (i) {
- line[i - 1] = '\0';
- ibl = xs_list_append(ibl, line);
- }
+ if (line) {
+ line = xs_strip_i(line);
+ ibl = xs_list_append(ibl, line);
}
+
+ fclose(f);
}
}