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:
commit
d0df37f341
2 changed files with 28 additions and 26 deletions
|
@ -44,7 +44,9 @@ psyc_free_state (psyc_state_t *ps) {
|
|||
pfree((void *) ps->parser);
|
||||
if (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;
|
||||
}
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@ version_longtype="stable"
|
|||
# A timestamp, to be used by bumpversion and other scripts.
|
||||
# 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.
|
||||
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
|
||||
version_major=4
|
||||
|
|
Loading…
Reference in a new issue