Skip to content
Snippets Groups Projects
Commit 4d0ff5f8 authored by toole1's avatar toole1
Browse files

monad release 2.1.4.3

git-svn-id: https://subversion.cs.illinois.edu/svn/cs225@5849 6fbd10e7-183d-0410-a318-cb416676e4f2
parent 4950e296
No related branches found
No related tags found
No related merge requests found
monad identification file monad identification file
This file is used for monad directory identification This file is used for monad directory identification
Built by toole1 on linux1.ews.illinois.edu Built by toole1 on linux1.ews.illinois.edu
Build Date: Tue Jan 24 22:46:06 CST 2012 Build Date: Wed Jan 25 01:07:42 CST 2012
No preview for this file type
No preview for this file type
...@@ -15,7 +15,7 @@ namespace versioninfo ...@@ -15,7 +15,7 @@ namespace versioninfo
{ {
const char * official_name = "Monad Autograder"; const char * official_name = "Monad Autograder";
const char * version_name = "confession"; const char * version_name = "confession";
const Version version_num = Version(2, 1, 4, 2); const Version version_num = Version(2, 1, 4, 3);
const char * date = "18 Jan 2012"; const char * date = "18 Jan 2012";
} }
......
...@@ -219,7 +219,7 @@ int8_t exec(const string & command, const vector<string> & args, ostream * outpu ...@@ -219,7 +219,7 @@ int8_t exec(const string & command, const vector<string> & args, ostream * outpu
if (char_read_count < 0 && errno == EINTR) continue; if (char_read_count < 0 && errno == EINTR) continue;
EXIT_IF_ERROR(char_read_count < 0); EXIT_IF_ERROR(char_read_count < 0);
EXIT_IF_ERROR(static_cast<size_t>(char_read_count) + 1 >= buffer.size()); EXIT_IF_ERROR(static_cast<size_t>(char_read_count) + 1 > buffer.size());
buffer[char_read_count] = '\0'; buffer[char_read_count] = '\0';
*output << &buffer[0]; *output << &buffer[0];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment