diff options
author | Sebastian Geerken <devnull@localhost> | 2014-01-06 23:32:17 +0100 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2014-01-06 23:32:17 +0100 |
commit | 0ebdb086c956a168a9d8ecf775edb536d0277629 (patch) | |
tree | 181127ecf4aacd5c30295b81c75d6c240745ba0a /src/styleengine.cc | |
parent | 3518ed24f16336b1ec0f4d41bb692e622341289b (diff) |
Fixed another memory leak related to background images.
Diffstat (limited to 'src/styleengine.cc')
-rw-r--r-- | src/styleengine.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/styleengine.cc b/src/styleengine.cc index 98b31d32..3f621cee 100644 --- a/src/styleengine.cc +++ b/src/styleengine.cc @@ -548,6 +548,8 @@ void StyleEngine::apply (int i, StyleAttrs *attrs, CssPropertyList *props, attrs->backgroundImage->connectDeletion (new StyleImageDeletionReceiver (clientKey)); } + + a_Url_free (imgUrl); } break; case CSS_PROPERTY_BACKGROUND_POSITION: |