fix: Prevent trying to access nil maps in PAXHeaders
This commit is contained in:
@@ -12,6 +12,9 @@ func DBHeaderToTarHeader(dbhdr *models.Header) (*tar.Header, error) {
|
|||||||
if err := json.Unmarshal([]byte(dbhdr.Paxrecords), &paxRecords); err != nil {
|
if err := json.Unmarshal([]byte(dbhdr.Paxrecords), &paxRecords); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
if paxRecords == nil {
|
||||||
|
paxRecords = map[string]string{}
|
||||||
|
}
|
||||||
|
|
||||||
hdr := &tar.Header{
|
hdr := &tar.Header{
|
||||||
Typeflag: byte(dbhdr.Typeflag),
|
Typeflag: byte(dbhdr.Typeflag),
|
||||||
|
|||||||
Reference in New Issue
Block a user