The purpose of the test in hlua_applet_tcp_new() was precisely to
declare non-nullity. Let's just do it using ASSUME_NONNULL() now.
static int hlua_applet_tcp_new(lua_State *L, struct appctx *ctx)
{
struct hlua_appctx *luactx;
- struct stream *s = appctx_strm(ctx);
+ struct stream *s = ASSUME_NONNULL(appctx_strm(ctx));
struct proxy *p;
- ALREADY_CHECKED(s);
p = s->be;
/* Check stack size. */