При запуске следующего кода через xcode я получаю противоречивое поведение. Иногда он печатает версию git правильно, а иногда ничего не печатает. Код возврата от команды оболочки всегда равен 0. Любые идеи о том, почему это может быть? Что я делаю не так?
#define BUFFER_SIZE 256
int main (int argc, const char * argv[])
{
FILE *fpipe;
char *command="/opt/local/bin/git --version";
char line[BUFFER_SIZE];
if ( !(fpipe = (FILE*)popen(command, "r")) )
{ // If fpipe is NULL
perror("Problems with pipe");
exit(1);
}
while ( fgets( line, sizeof(char) * BUFFER_SIZE, fpipe))
{
// Inconsistent (happens sometimes)
printf("READING LINE");
printf("%s", line);
}
int status = pclose(fpipe);
if (status != 0)
{
// Never happens
printf("Strange error code: %d", status);
}
return 0;
}