glsl/apps: Adapt to pp interface change.
authorMichal Krol <michal@vmware.com>
Mon, 14 Sep 2009 11:08:07 +0000 (13:08 +0200)
committerMichal Krol <michal@vmware.com>
Mon, 14 Sep 2009 11:08:07 +0000 (13:08 +0200)
src/glsl/apps/process.c
src/glsl/apps/tokenise.c
src/glsl/apps/version.c

index 71211ccb727f52bb3f5f90b0355147b017125d77..a11f9741f5ae2f81479e89190b55b5d50e6f7464 100644 (file)
@@ -88,7 +88,10 @@ main(int argc,
 
    free(inbuf);
 
-   sl_pp_context_init(&context);
+   if (sl_pp_context_init(&context)) {
+      free(outbuf);
+      return 1;
+   }
 
    if (sl_pp_tokenise(&context, outbuf, &tokens)) {
       sl_pp_context_destroy(&context);
index b5092ba35f6bf7d1240e2dccd16b222f3355afbf..64b0a2f05eb8df6a77157b474538ca9760ed7dcd 100644 (file)
@@ -84,7 +84,10 @@ main(int argc,
 
    free(inbuf);
 
-   sl_pp_context_init(&context);
+   if (sl_pp_context_init(&context)) {
+      free(outbuf);
+      return 1;
+   }
 
    if (sl_pp_tokenise(&context, outbuf, &tokens)) {
       sl_pp_context_destroy(&context);
index c56ae9dde9a92a92cb7c80db9df542f5e9ca9b3e..9e579043b28b5e19e65d2d8f0d0d549992261133 100644 (file)
@@ -84,7 +84,10 @@ main(int argc,
 
    free(inbuf);
 
-   sl_pp_context_init(&context);
+   if (sl_pp_context_init(&context)) {
+      free(outbuf);
+      return 1;
+   }
 
    if (sl_pp_tokenise(&context, outbuf, &tokens)) {
       sl_pp_context_destroy(&context);