Skip to content

Commit c69bf43

Browse files
Update base/loading.jl
1 parent 07203d2 commit c69bf43

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

base/loading.jl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2645,7 +2645,11 @@ end
26452645
return true
26462646
end
26472647
end
2648-
tracked_path = unsafe_string(JLOptions().tracked_path)
2648+
tracked_path = if JLOptions().tracked_path == NULL
2649+
""
2650+
else
2651+
unsafe_string(JLOptions().tracked_path)
2652+
end
26492653
for chi in includes
26502654
f, ftime_req = chi.filename, chi.mtime
26512655
if !isfile(f)

0 commit comments

Comments
 (0)