mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-17 06:20:27 +01:00
mesa: fix some error codes in _mesa_ShaderSourceARB()
This commit is contained in:
parent
d015ffa6ea
commit
bb18a8b2ea
1 changed files with 4 additions and 4 deletions
|
|
@ -1,8 +1,8 @@
|
|||
/*
|
||||
* Mesa 3-D graphics library
|
||||
* Version: 6.5.3
|
||||
* Version: 7.1
|
||||
*
|
||||
* Copyright (C) 2004-2007 Brian Paul All Rights Reserved.
|
||||
* Copyright (C) 2004-2008 Brian Paul All Rights Reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
|
|
@ -382,7 +382,7 @@ _mesa_ShaderSourceARB(GLhandleARB shaderObj, GLsizei count,
|
|||
GLsizei i, totalLength;
|
||||
GLcharARB *source;
|
||||
|
||||
if (string == NULL) {
|
||||
if (!shaderObj || string == NULL) {
|
||||
_mesa_error(ctx, GL_INVALID_VALUE, "glShaderSourceARB");
|
||||
return;
|
||||
}
|
||||
|
|
@ -400,7 +400,7 @@ _mesa_ShaderSourceARB(GLhandleARB shaderObj, GLsizei count,
|
|||
for (i = 0; i < count; i++) {
|
||||
if (string[i] == NULL) {
|
||||
_mesa_free((GLvoid *) offsets);
|
||||
_mesa_error(ctx, GL_INVALID_VALUE, "glShaderSourceARB(null string)");
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION, "glShaderSourceARB(null string)");
|
||||
return;
|
||||
}
|
||||
if (length == NULL || length[i] < 0)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue