1
0
Fork 0
mirror of git://git.psyced.org/git/psyclpc synced 2024-08-15 03:20:16 +00:00

Merge branch 'master' of git://git.psyced.org/git/psyclpc

This commit is contained in:
Gabor Adam Toth 2011-05-10 15:33:31 +02:00
commit d0df37f341
2 changed files with 28 additions and 26 deletions

View file

@ -44,7 +44,9 @@ psyc_free_state (psyc_state_t *ps) {
pfree((void *) ps->parser); pfree((void *) ps->parser);
if (ps->packet) if (ps->packet)
free_array(ps->packet); free_array(ps->packet);
ps->name = ps->value = ps->remaining = ps->parser = ps->packet = NULL; ps->name = ps->value = ps->remaining = NULL;
ps->parser = NULL;
ps->packet = NULL;
ps->oper = ps->name_len = ps->value_len = ps->remaining_len = 0; ps->oper = ps->name_len = ps->value_len = ps->remaining_len = 0;
} }

View file

@ -17,7 +17,7 @@ version_longtype="stable"
# A timestamp, to be used by bumpversion and other scripts. # A timestamp, to be used by bumpversion and other scripts.
# It can be used, for example, to 'touch' this file on every build, thus # It can be used, for example, to 'touch' this file on every build, thus
# forcing revision control systems to add it on every checkin automatically. # forcing revision control systems to add it on every checkin automatically.
version_stamp="Tue May 10 01:00:33 CEST 2011" version_stamp="Tue May 10 14:07:26 CEST 2011"
# Okay, LDMUD is using 3.x.x so to avoid conflicts let's just use 4.x.x # Okay, LDMUD is using 3.x.x so to avoid conflicts let's just use 4.x.x
version_major=4 version_major=4