diff --git a/src/particles.c b/src/particles.c
index 728692b5933bde2f6de1e93c8345d0997af2be95..cd11b180de77b90ad41e334ced41a39f49185c51 100644
--- a/src/particles.c
+++ b/src/particles.c
@@ -986,8 +986,9 @@ void thread_particle_init(particle_thread *pt, plist *l)
 	ps->init = TRUE;
 }
 
-void thread_particle_die(particle_thread *pt, plist *l)
+plist * thread_particle_die(particle_thread *pt, plist *l)
 {
+	plist *lnext = l->next;
 	lua_State *L = pt->L;
 	particles_type *ps = l->ps;
 
@@ -1022,9 +1023,15 @@ void thread_particle_die(particle_thread *pt, plist *l)
 		if (ps->vertices) { free(ps->vertices); ps->vertices = NULL; }
 		if (ps->colors) { free(ps->colors); ps->colors = NULL; }
 		if (ps->particles) { free(ps->particles); ps->particles = NULL; }
+		if (ps->args) { free(ps->args); ps->args = NULL; }
+		if (ps->name_def) { free(ps->name_def); ps->name_def = NULL; }
 		ps->init = FALSE;
 		ps->alive = FALSE;
+		ps->l = NULL;
 	}
+
+	free(l);
+	return lnext;
 }
 
 // Runs on particles thread
@@ -1083,13 +1090,13 @@ int thread_particles(void *data)
 			}
 			else
 			{
-				thread_particle_die(pt, l);
+				plist *lnext = thread_particle_die(pt, l);
 
 				// Remove dead ones
-				if (!prev) pt->list = l->next;
-				else prev->next = l->next;
+				if (!prev) pt->list = lnext;
+				else prev->next = lnext;
 
-				l = l->next;
+				l = lnext;
 			}
 			nb++;
 		}
@@ -1103,10 +1110,7 @@ int thread_particles(void *data)
 	SDL_mutexP(pt->lock);
 	l = pt->list;
 	while (l)
-	{
-		thread_particle_die(pt, l);
-		l = l->next;
-	}
+		l = thread_particle_die(pt, l);
 	SDL_mutexV(pt->lock);
 
 	lua_close(L);
@@ -1139,6 +1143,9 @@ void thread_add(particles_type *ps)
 	plist *l = malloc(sizeof(plist));
 	l->pt = pt;
 	l->ps = ps;
+	l->generator_ref = LUA_NOREF;
+	l->updator_ref = LUA_NOREF;
+	l->emit_ref = LUA_NOREF;
 	l->next = pt->list;
 	pt->list = l;
 	ps->l = l;
diff --git a/src/serial.c b/src/serial.c
index 92a7bac648d26b3d7ef2382de58f8064e836fcbb..c2d3d3a53d309bfa7738bf2471c2e4a4b61f55d1 100644
--- a/src/serial.c
+++ b/src/serial.c
@@ -210,6 +210,7 @@ int thread_save(void *data)
 			free(q->payload);
 			free(q->zfname);
 			free(q->filename);
+			free(q);
 		}
 
 		if (zf) {