Eric Biggers <[email protected]> wrote: > + rka = kzalloc(sizeof(*rka), GFP_KERNEL); > + if (!rka) > + goto error_free_rka;
But you haven't allocated an rka if you're in the error path. I'll fix that to jump over the release. David
Eric Biggers <[email protected]> wrote: > + rka = kzalloc(sizeof(*rka), GFP_KERNEL); > + if (!rka) > + goto error_free_rka;
But you haven't allocated an rka if you're in the error path. I'll fix that to jump over the release. David