summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntonio Bosak <toni.bosak@gmail.com>2019-05-15 17:27:33 +0200
committerAntonio Bosak <toni.bosak@gmail.com>2019-05-15 17:27:33 +0200
commit1af5a0c18cae5799fbfc73dc8440abb7d7622837 (patch)
treef261eb3ab5f36262d9c2ea567c9248f28a94a39c
parent8f080922446313698730071fd92ca15900e6a941 (diff)
fix for not concating already defined filepath
-rw-r--r--fpdf.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/fpdf.go b/fpdf.go
index d3366ce..e2ff7d7 100644
--- a/fpdf.go
+++ b/fpdf.go
@@ -1601,6 +1601,7 @@ func (f *Fpdf) addFont(familyStr, styleStr, fileStr string, isUTF8 bool) {
}
var ttfStat os.FileInfo
var err error
+ fileStr = path.Join(f.fontpath, fileStr)
ttfStat, err = os.Stat(fileStr)
if err != nil {
f.SetError(err)