diff options
author | Keith Whitwell <[email protected]> | 2005-05-10 18:08:25 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2005-05-10 18:08:25 +0000 |
commit | c5f5055097e8fa23e8ba8bd39b0d9b747148c996 (patch) | |
tree | 8e516b484125601be51979e455d1a5c1f2f36c4b /src/mesa/shader/program.c | |
parent | dbeea25bb834479a29712100888c862348112018 (diff) |
Fix some valgrind complaints
Diffstat (limited to 'src/mesa/shader/program.c')
-rw-r--r-- | src/mesa/shader/program.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mesa/shader/program.c b/src/mesa/shader/program.c index bc8bc1bcfa3..a375805052d 100644 --- a/src/mesa/shader/program.c +++ b/src/mesa/shader/program.c @@ -355,8 +355,6 @@ _mesa_free_parameter_list(struct program_parameter_list *paramList) _mesa_free(paramList->Parameters); _mesa_free(paramList->ParameterValues); _mesa_free(paramList); - paramList->Parameters = NULL; - paramList->ParameterValues = NULL; } |