Skip to content

Commit

Permalink
auto merge of #17796 : tomjakubowski/rust/rustdoc-ice-17736, r=alexcr…
Browse files Browse the repository at this point in the history
…ichton

Previously, external code might call `markdown::render()` without having
called `markdown::reset_headers()`, meaning the TLS key
`used_header_map` was unset.  Now `markdown::render()` ensures that
`used_header_map` is set by calling `reset_headers` if necessary.

Fix #17736
  • Loading branch information
bors committed Oct 6, 2014
2 parents 0d94fda + 942bed7 commit 3edcdbb
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/librustdoc/html/markdown.rs
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,10 @@ pub fn render(w: &mut fmt::Formatter, s: &str, print_toc: bool) -> fmt::Result {
text.with_c_str(|p| unsafe { hoedown_buffer_puts(ob, p) });
}

if used_header_map.get().is_none() {
reset_headers();
}

unsafe {
let ob = hoedown_buffer_new(DEF_OUNIT);
let renderer = hoedown_html_renderer_new(0, 0);
Expand Down Expand Up @@ -446,7 +450,7 @@ impl<'a> fmt::Show for MarkdownWithToc<'a> {

#[cfg(test)]
mod tests {
use super::LangString;
use super::{LangString, Markdown};

#[test]
fn test_lang_string_parse() {
Expand Down Expand Up @@ -474,4 +478,10 @@ mod tests {
t("{.example .rust}", false,false,false,false,false);
t("{.test_harness .rust}", false,false,false,false,true);
}

#[test]
fn issue_17736() {
let markdown = "# title";
format!("{}", Markdown(markdown.as_slice()));
}
}

0 comments on commit 3edcdbb

Please sign in to comment.