mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-12-22 14:30:29 +00:00
05d82736bc
Add check for buffer overflow when globbing, expanding variables, or inserting aliases (PR#110). Increase buffer size from 1024 to 4096. Increase buffer for reading commands from 256 to 1024 bytes in order to match the maximum length used when reading.
36 lines
628 B
Plaintext
36 lines
628 B
Plaintext
/*
|
|
* Resources for version and comment
|
|
*
|
|
* $Id: gsh.rez,v 1.12 1999/02/08 17:26:50 tribby Exp $
|
|
*/
|
|
|
|
#define PROG "gsh"
|
|
#define DESC "GNO/Shell\n"
|
|
|
|
#include "Types.rez"
|
|
#include "builddate.rez"
|
|
|
|
/*
|
|
* Version
|
|
*/
|
|
resource rVersion (1, purgeable3) {
|
|
{ 2, 0, 0, /* Version 2.0.0 */
|
|
development, /* development|alpha|beta|final|release */
|
|
10 }, /* non-final release number */
|
|
verUS, /* Country */
|
|
PROG, /* Program name */
|
|
DESC
|
|
BUILD_DATE
|
|
};
|
|
|
|
|
|
/*
|
|
* Comment
|
|
*/
|
|
resource rComment (1, purgeable3) {
|
|
PROG " v2.0\n"
|
|
DESC
|
|
"Written by Tim Meekins. Updated by Dave Tribby\n"
|
|
BUILD_DATE
|
|
};
|