summaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorBert <ber.t@gmx.com>2011-02-03 22:05:13 +0100
committerBert <ber.t@gmx.com>2011-02-03 22:05:13 +0100
commit096c0ed935f7373c15809183ec474f4628d5fa5d (patch)
tree6273748fcec92f8beddfda6092a2c9c45d424bc3 /main.c
parent414fa567ce3893c33bc3a7b313b329c783853624 (diff)
downloadnsxiv-096c0ed935f7373c15809183ec474f4628d5fa5d.tar.zst
Removed some warnings
Diffstat (limited to 'main.c')
-rw-r--r--main.c62
1 files changed, 33 insertions, 29 deletions
diff --git a/main.c b/main.c
index 4970e60..369c1a2 100644
--- a/main.c
+++ b/main.c
@@ -33,7 +33,7 @@
#include "window.h"
void update_title();
-void check_append(const char*);
+int check_append(const char*);
void read_dir_rec(const char*);
void run();
@@ -61,10 +61,10 @@ void cleanup() {
int load_image() {
struct stat fstats;
- if (stat(filenames[fileidx], &fstats))
- warn("could not stat file: %s", filenames[fileidx]);
- else
+ if (!stat(filenames[fileidx], &fstats))
filesize = fstats.st_size;
+ else
+ filesize = 0;
return img_load(&img, filenames[fileidx]);
}
@@ -91,9 +91,7 @@ int main(int argc, char **argv) {
for (i = 0; i < options->filecnt; ++i) {
filename = options->filenames[i];
- if (stat(filename, &fstats)) {
- warn("could not stat file: %s", filename);
- } else if (S_ISDIR(fstats.st_mode)) {
+ if (!stat(filename, &fstats) && S_ISDIR(fstats.st_mode)) {
if (options->recursive)
read_dir_rec(filename);
else
@@ -145,9 +143,9 @@ void update_title() {
win_set_title(&win, win_title);
}
-void check_append(const char *filename) {
+int check_append(const char *filename) {
if (!filename)
- return;
+ return 0;
if (img_check(filename)) {
if (fileidx == filecnt) {
@@ -156,6 +154,9 @@ void check_append(const char *filename) {
filecnt * sizeof(const char*));
}
filenames[fileidx++] = filename;
+ return 1;
+ } else {
+ return 0;
}
}
@@ -179,29 +180,32 @@ void read_dir_rec(const char *dirname) {
while (diridx > 0) {
dirname = dirnames[--diridx];
- if (!(dir = opendir(dirname)))
- die("could not open directory: %s", dirname);
- while ((dentry = readdir(dir))) {
- if (!strcmp(dentry->d_name, ".") || !strcmp(dentry->d_name, ".."))
- continue;
- len = strlen(dirname) + strlen(dentry->d_name) + 2;
- filename = (char*) s_malloc(len * sizeof(char));
- snprintf(filename, len, "%s/%s", dirname, dentry->d_name);
- if (stat(filename, &fstats)) {
- warn("could not stat file: %s", filename);
- free(filename);
- } else if (S_ISDIR(fstats.st_mode)) {
- if (diridx == dircnt) {
- dircnt *= 2;
- dirnames = (const char**) s_realloc(dirnames,
- dircnt * sizeof(const char*));
+ if (!(dir = opendir(dirname))) {
+ warn("could not open directory: %s", dirname);
+ } else {
+ while ((dentry = readdir(dir))) {
+ if (!strcmp(dentry->d_name, ".") || !strcmp(dentry->d_name, ".."))
+ continue;
+
+ len = strlen(dirname) + strlen(dentry->d_name) + 2;
+ filename = (char*) s_malloc(len * sizeof(char));
+ snprintf(filename, len, "%s/%s", dirname, dentry->d_name);
+
+ if (!stat(filename, &fstats) && S_ISDIR(fstats.st_mode)) {
+ if (diridx == dircnt) {
+ dircnt *= 2;
+ dirnames = (const char**) s_realloc(dirnames,
+ dircnt * sizeof(const char*));
+ }
+ dirnames[diridx++] = filename;
+ } else {
+ if (!check_append(filename))
+ free(filename);
}
- dirnames[diridx++] = filename;
- } else {
- check_append(filename);
}
+ closedir(dir);
}
- closedir(dir);
+
if (!first)
free((void*) dirname);
else