editorconfig / editorconfig-geany

EditorConfig plugin for Geany
http://editorconfig.org
GNU General Public License v2.0
44 stars 12 forks source link

Fix error when gd->file_name returns NULL #3

Closed jiafulow closed 8 years ago

jiafulow commented 8 years ago

When there is no file in the current session, gd->file_name returns NULL and may cause seg fault. The macro DOC_FILENAME returns a string "untitled" when gd->file_name is NULL, so it is safer.

xuhdev commented 8 years ago

Thanks!

jiafulow commented 8 years ago

You're welcome. Thanks for making the plugin in the first place!