diff options
Diffstat (limited to 'object.h')
-rw-r--r-- | object.h | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -11,7 +11,13 @@ struct object_array { unsigned int alloc; struct object_array_entry { struct object *item; - const char *name; + /* + * name or NULL. If non-NULL, the memory pointed to + * is owned by this object *except* if it points at + * object_array_slopbuf, which is a static copy of the + * empty string. + */ + char *name; unsigned mode; } *objects; }; |