mirror of
https://github.com/panda3d/panda3d.git
synced 2025-09-30 00:32:57 -04:00
Fix crash when passing None to Filename constructor
This commit is contained in:
parent
6fce996ceb
commit
5736e7a4b0
@ -60,10 +60,11 @@ public:
|
|||||||
F_pattern = 0x40,
|
F_pattern = 0x40,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
INLINE Filename(const char *filename);
|
||||||
|
|
||||||
PUBLISHED:
|
PUBLISHED:
|
||||||
INLINE Filename(const string &filename = "");
|
INLINE Filename(const string &filename = "");
|
||||||
INLINE Filename(const wstring &filename);
|
INLINE Filename(const wstring &filename);
|
||||||
INLINE Filename(const char *filename);
|
|
||||||
INLINE Filename(const Filename ©);
|
INLINE Filename(const Filename ©);
|
||||||
Filename(const Filename &dirname, const Filename &basename);
|
Filename(const Filename &dirname, const Filename &basename);
|
||||||
INLINE ~Filename();
|
INLINE ~Filename();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user