aboutsummaryrefslogtreecommitdiff
path: root/src/objects.h
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2011-11-07 22:17:08 +0100
committerThomas White <taw@bitwiz.org.uk>2011-11-07 22:17:08 +0100
commit0bcf6185b031ccd74e6c39bdfb5d21a71e8992b1 (patch)
tree804d8c1b4140466465e8ce355d106a1fa46327ea /src/objects.h
parent38d030f301cc781a56cab5724175a127f2eb1230 (diff)
Free image data on final unref
Diffstat (limited to 'src/objects.h')
-rw-r--r--src/objects.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/objects.h b/src/objects.h
index fd567e1..6fd3a42 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -71,7 +71,9 @@ struct image
int width;
int height;
- int refcount;
+ int refcount;
+
+ struct image_store *parent;
};