1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-02-03 17:47:44 +03:00

drop an unnecessary 'stack'

This commit is contained in:
Alasdair Kergon 2010-09-27 19:15:13 +00:00
parent b91a077d23
commit 8ad3bb1462

View File

@ -210,8 +210,10 @@ static int _aligned_io(struct device_area *where, void *buffer,
(size_t) where->size); (size_t) where->size);
/* ... then we write */ /* ... then we write */
r = _io(&widened, bounce, 1); if (!(r = _io(&widened, bounce, 1)))
goto_out; stack;
goto out;
} }
memcpy(buffer, bounce + (where->start - widened.start), memcpy(buffer, bounce + (where->start - widened.start),