ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/common/links.C
(Generate patch)

Comparing deliantra/server/common/links.C (file contents):
Revision 1.10 by root, Thu Nov 8 19:43:23 2007 UTC vs.
Revision 1.12 by root, Thu Jan 8 03:03:23 2009 UTC

1/* 1/*
2 * This file is part of Deliantra, the Roguelike Realtime MMORPG. 2 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 * 3 *
4 * Copyright (©) 2005,2006,2007 Marc Alexander Lehmann / Robin Redeker / the Deliantra team 4 * Copyright (©) 2005,2006,2007,2008 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 * Copyright (©) 1992,2007 Frank Tore Johansen 5 * Copyright (©) 1992,2007 Frank Tore Johansen
6 * 6 *
7 * Deliantra is free software: you can redistribute it and/or modify 7 * Deliantra is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by 8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or 9 * the Free Software Foundation, either version 3 of the License, or
30objectlink * 30objectlink *
31get_objectlink (void) 31get_objectlink (void)
32{ 32{
33 objectlink *ol = new objectlink; 33 objectlink *ol = new objectlink;
34 34
35 ol->ob = 0; 35 ol->ob = 0;
36 ol->next = 0; 36 ol->next = 0;
37
37 return ol; 38 return ol;
38} 39}
39 40
40/* 41/*
41 * Allocates a new oblinkpt structure, initialises it, and returns 42 * Allocates a new oblinkpt structure, initialises it, and returns
47{ 48{
48 oblinkpt *obp = new oblinkpt; 49 oblinkpt *obp = new oblinkpt;
49 50
50 obp->link = 0; 51 obp->link = 0;
51 obp->next = 0; 52 obp->next = 0;
52 obp->value = 0; 53
53 return obp; 54 return obp;
54} 55}
55 56
56/* 57/*
57 * Recursively frees all objectlinks 58 * Recursively frees all objectlinks
58 */ 59 */
59 60
60void 61void
61free_objectlink (objectlink * ol) 62free_objectlink (objectlink *ol)
62{ 63{
63 if (ol->next) 64 if (ol->next)
64 free_objectlink (ol->next); 65 free_objectlink (ol->next);
65 66
66 delete ol; 67 delete ol;
79 if (obp->link) 80 if (obp->link)
80 free_objectlink (obp->link); 81 free_objectlink (obp->link);
81 82
82 delete obp; 83 delete obp;
83} 84}
85

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines