summaryrefslogtreecommitdiff
path: root/src/include/util_StringList.h
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2005-12-13 15:41:43 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2005-12-13 15:41:43 +0000
commite27e0e6afb9ed8df2bb74a0c63c98dcef3559c1c (patch)
tree26097369e4de4732d6b66843645bbeb9eebc8cdd /src/include/util_StringList.h
parent60a9d3ed2ebfc4bec092911124000715983147fe (diff)
Patch from Erik Schnetter to track the capacity of the list and
produce an error if it is exceeded. git-svn-id: http://svn.cactuscode.org/flesh/trunk@4210 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/include/util_StringList.h')
-rw-r--r--src/include/util_StringList.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/util_StringList.h b/src/include/util_StringList.h
index 4d80ab02..c6a76a74 100644
--- a/src/include/util_StringList.h
+++ b/src/include/util_StringList.h
@@ -23,6 +23,7 @@ struct iInternalStringList
typedef struct
{
+ int max_size;
int fill;
struct iInternalStringList *list;
struct iInternalStringList *head;