Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

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 Nov 11, 2018
1 parent 7459d19 commit 9ce7a7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/inspect.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1057,7 +1057,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 9ce7a7f

Please sign in to comment.