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
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