[Libguestfs] [PATCH] lua: always return luaL_error in actions

Richard W.M. Jones rjones at redhat.com
Thu Aug 7 19:57:50 UTC 2014


On Thu, Aug 07, 2014 at 07:48:08PM +0200, Pino Toscano wrote:
> Even if luaL_error is a "no return" function for the Lua runtime, adopt
> also in action functions the "return" idiom recommeded for it.
> 
> This also helps code analyzers in not thinking that "g" might still be
> null after the null check followed by luaL_error.
> ---
>  generator/lua.ml | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/generator/lua.ml b/generator/lua.ml
> index 9bd4006..5d5619c 100644
> --- a/generator/lua.ml
> +++ b/generator/lua.ml
> @@ -482,8 +482,8 @@ guestfs_lua_delete_event_callback (lua_State *L)
>        pr "\n";
>  
>        pr "  if (g == NULL)\n";
> -      pr "    luaL_error (L, \"Guestfs.%%s: handle is closed\",\n";
> -      pr "                \"%s\");\n" name;
> +      pr "    return luaL_error (L, \"Guestfs.%%s: handle is closed\",\n";
> +      pr "                       \"%s\");\n" name;
>        pr "\n";

Yeah, I opened a ticket to get the Coverity model changed several
years ago, but nothing happened.

So this looks the best we can do => ACK.

Rich.

-- 
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
Read my programming and virtualization blog: http://rwmj.wordpress.com
virt-top is 'top' for virtual machines.  Tiny program with many
powerful monitoring features, net stats, disk stats, logging, etc.
http://people.redhat.com/~rjones/virt-top




More information about the Libguestfs mailing list