Skip to content

Commit 30067c7

Browse files
committed
Fix possible memory leak (circular reference)
1 parent f9c81af commit 30067c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ast.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1034,7 +1034,7 @@ namespace Sass {
10341034
// The @content directive for mixin content blocks.
10351035
///////////////////////////////////////////////////
10361036
class Content : public Statement {
1037-
ADD_PROPERTY(Media_Block_Obj, media_block)
1037+
ADD_PROPERTY(Media_Block_Ptr, media_block)
10381038
public:
10391039
Content(ParserState pstate) : Statement(pstate)
10401040
{ statement_type(CONTENT); }

0 commit comments

Comments
 (0)