Fix basic_nif on_load()

This commit is contained in:
Tuncer Ayaz 2012-01-05 22:41:06 +01:00
parent af3eab6522
commit b594d356e1

View file

@ -1,6 +1,6 @@
#include "erl_nif.h"
static ErlNifResourceType* {{module}}_RESOURCE;
static ErlNifResourceType* {{module}}_RESOURCE = NULL;
typedef struct
{
@ -51,6 +51,8 @@ static int on_load(ErlNifEnv* env, void** priv_data, ERL_NIF_TERM load_info)
if (rt == NULL)
return -1;
{{module}}_RESOURCE = rt;
return 0;
}