Re: [PATCH 08/11] mips/boston: Fix boston_mach_init() error handling

2020-04-28 Thread Markus Armbruster
Markus Armbruster writes: > The Error ** argument must be NULL, &error_abort, &error_fatal, or a > pointer to a variable containing NULL. Passing an argument of the > latter kind twice without clearing it in between is wrong: if the > first call sets an error, it no longer points to NULL for the

[PATCH 08/11] mips/boston: Fix boston_mach_init() error handling

2020-04-24 Thread Markus Armbruster
The Error ** argument must be NULL, &error_abort, &error_fatal, or a pointer to a variable containing NULL. Passing an argument of the latter kind twice without clearing it in between is wrong: if the first call sets an error, it no longer points to NULL for the second boston_mach_init() is wrong