mirror of
https://github.com/reactos/syzkaller.git
synced 2024-11-23 03:19:51 +00:00
b6ed147834
We are seeing some one-off panics during Deserialization and it's unclear if it's machine memory corrpution or an actual bug in prog. I leam towards machine memory corruption but it's impossible to prove without seeing the orig program. Move git revision to prog and it's more base package (sys can import prog, prog can't import sys).
27 lines
688 B
Go
27 lines
688 B
Go
// Copyright 2020 syzkaller project authors. All rights reserved.
|
|
// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
|
|
|
|
package prog
|
|
|
|
import (
|
|
"strings"
|
|
"time"
|
|
)
|
|
|
|
var (
|
|
GitRevision string // emitted by Makefile, may contain + at the end
|
|
GitRevisionBase string // without +
|
|
gitRevisionDate string // emitted by Makefile
|
|
GitRevisionDate time.Time // parsed from gitRevisionDate
|
|
)
|
|
|
|
func init() {
|
|
GitRevisionBase = strings.Replace(GitRevision, "+", "", -1)
|
|
if gitRevisionDate != "" {
|
|
var err error
|
|
if GitRevisionDate, err = time.Parse("Mon Jan 2 15:04:05 2006 -0700", gitRevisionDate); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
}
|