diff options
| author | Vincent Bernat <[email protected]> | 2015-08-15 13:49:13 +0000 |
|---|---|---|
| committer | Al Viro <[email protected]> | 2015-08-23 01:35:02 +0000 |
| commit | 999b8b88c6060adf7a9b7907740ae86ace65291e (patch) | |
| tree | b8d0860768745926227e32002bdd5c249fdd4a86 /tools/perf/util/scripting-engines/trace-event-perl.c | |
| parent | Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvm (diff) | |
| download | kernel-999b8b88c6060adf7a9b7907740ae86ace65291e.tar.gz kernel-999b8b88c6060adf7a9b7907740ae86ace65291e.zip | |
9p: ensure err is initialized to 0 in p9_client_read/write
Some use of those functions were providing unitialized values to those
functions. Notably, when reading 0 bytes from an empty file on a 9P
filesystem, the return code of read() was not 0.
Tested with this simple program:
#include <assert.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
int main(int argc, const char **argv)
{
assert(argc == 2);
char buffer[256];
int fd = open(argv[1], O_RDONLY|O_NOCTTY);
assert(fd >= 0);
assert(read(fd, buffer, 0) == 0);
return 0;
}
Cc: [email protected] # v4.1
Signed-off-by: Vincent Bernat <[email protected]>
Signed-off-by: Al Viro <[email protected]>
Diffstat (limited to 'tools/perf/util/scripting-engines/trace-event-perl.c')
0 files changed, 0 insertions, 0 deletions
