hugo

Unnamed repository; edit this file 'description' to name the repository.

git clone git://git.shimmy1996.com/hugo.git
commit c39ac5738d5841c2fbcdeaa637182b918be22667
parent 9da617912ba740cebd18789ca7aa55f25495ae6c
Author: Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Date:   Thu, 19 Jul 2018 12:20:01 +0200

Revert "hugolib: Fix potential server panic with drafts/future enabled"

This had a side-effect. I have understand this better to apply the correct fix. Will come soon.

This reverts commit 1ab4658c0d5ea2927f04bd748206e5b139a6326e.

Diffstat:
Mhugolib/site.go | 9+--------
1 file changed, 1 insertion(+), 8 deletions(-)
diff --git a/hugolib/site.go b/hugolib/site.go
@@ -1511,19 +1511,12 @@ func (s *Site) resetBuildState() {
 
 	spc = newPageCache()
 
-	initPage := func(p *Page) {
+	for _, p := range s.rawAllPages {
 		p.subSections = Pages{}
 		p.parent = nil
 		p.scratch = maps.NewScratch()
 		p.mainPageOutput = nil
 	}
-
-	for _, p := range s.Pages {
-		initPage(p)
-	}
-	for _, p := range s.headlessPages {
-		initPage(p)
-	}
 }
 
 func (s *Site) kindFromSections(sections []string) string {