Skip to content

Commit

Permalink
Fix possible bug with handling empty reference combinators
Browse files Browse the repository at this point in the history
Fixes #2665
  • Loading branch information
xzyfer committed Jul 4, 2018
1 parent ea0e397 commit 38f4c36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/inspect.cpp
Expand Up @@ -1042,7 +1042,7 @@ namespace Sass {
case Complex_Selector::REFERENCE:
append_mandatory_space();
append_string("/");
c->reference()->perform(this);
if (c->reference()) c->reference()->perform(this);
append_string("/");
append_mandatory_space();
break;
Expand Down

0 comments on commit 38f4c36

Please sign in to comment.