show/hide this revision's text 2 clarification

It should be mostly mandatory. There The reason for this has nothing to do with performance but rather the danger of using an unitialized variable. However, there are cases where it simply looks ridiculous. For example, I have seen:

struct stat s;
s.st_dev = -1;
s.st_ino = -1;
s.st_mode = S_IRWXU;
s.st_nlink = 0;
s.st_size = 0;
// etc...
s.st_st_ctime = -1;
if(stat(path, &s) != 0) {
   // handle error
   return;
}

WTF???

Note that we are handling the error right away, so there is no question about what happens if the stat fails.

show/hide this revision's text 1

It should be mostly mandatory. There are cases where it simply looks ridiculous. For example, I have seen:

struct stat s;
s.st_dev = -1;
s.st_ino = -1;
s.st_mode = S_IRWXU;
s.st_nlink = 0;
s.st_size = 0;
// etc...
s.st_st_ctime = -1;
if(stat(path, &s) != 0) {
   // handle error
   return;
}

WTF???

Note that we are handling the error right away, so there is no question about what happens if the stat fails.