From 19ec8860c1d80836b176dbf3dc434a94182094b7 Mon Sep 17 00:00:00 2001 From: Daisuke Okitsu <daisuke.x.okitsu@sonymobile.com> Date: Mon, 5 Aug 2013 12:18:15 +0900 Subject: [PATCH] Sdcard: Initialize the padding output value Add initialization of the output value in handle_write. This value is referred to in FUSE so initialization is necessary. See also handle_open and handle_opendir. Change-Id: I6507f113da9f6823fbfa459624d6594fc20afa51 --- sdcard/sdcard.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sdcard/sdcard.c b/sdcard/sdcard.c index 3fc3577ba8..9ba81ff102 100644 --- a/sdcard/sdcard.c +++ b/sdcard/sdcard.c @@ -1269,6 +1269,7 @@ static int handle_write(struct fuse* fuse, struct fuse_handler* handler, return -errno; } out.size = res; + out.padding = 0; fuse_reply(fuse, hdr->unique, &out, sizeof(out)); return NO_STATUS; } -- GitLab