pkg/proc: fix 404 links and change to https (#3775)

This commit is contained in:
Oleksandr Redko
2024-07-11 18:03:32 +03:00
committed by GitHub
parent 7a801c440b
commit d8003a74c8
6 changed files with 11 additions and 11 deletions

View File

@ -1479,7 +1479,7 @@ func convertToEface(srcv, dstv *Variable) error {
func readStringInfo(mem MemoryReadWriter, arch *Arch, addr uint64, typ *godwarf.StringType) (uint64, int64, error) {
// string data structure is always two ptrs in size. Addr, followed by len
// http://research.swtch.com/godata
// https://research.swtch.com/godata
mem = cacheMemory(mem, addr, arch.PtrSize()*2)