Re: [PATCH] remove goto label in msdosfs_vfsops.c

2012-11-21 Thread Joel Sing
On Wed, 21 Nov 2012, Michael W. Bombardieri wrote: > Hi Tech, > > I have a small msdosfs patch... > > Error cases are handled inconsistently in msdosfs_mount(). > Some cases use the construct "if (error) goto error;", > others just return error immediately. > The following patch removes the goto la

[PATCH] remove goto label in msdosfs_vfsops.c

2012-11-20 Thread Michael W. Bombardieri
Hi Tech, I have a small msdosfs patch... Error cases are handled inconsistently in msdosfs_mount(). Some cases use the construct "if (error) goto error;", others just return error immediately. The following patch removes the goto label and makes the function return error consistently. Does this