]> git.draconx.ca Git - gob-dx.git/blobdiff - src/lexer.c
Release 0.93.3
[gob-dx.git] / src / lexer.c
index 958dd4d5653ea277693f569f74bc53621b83da97..f9fb3e8508e0dac4badf7df1a3e2d477fd8eadb1 100644 (file)
@@ -771,9 +771,9 @@ static void
 clear_cbuf(void)
 {
        if(!cbuf) {
-               cbuf = g_string_new("");
+               cbuf = g_string_new(NULL);
        } else {
-               cbuf = g_string_assign(cbuf,"");
+               cbuf = g_string_assign(cbuf, "");
        }
 }