GithubHelp home page GithubHelp logo

vpekdas / pipex Goto Github PK

View Code? Open in Web Editor NEW
0.0 2.0 0.0 161 KB

A command-line utility in C for redirecting input and output streams between processes, enhancing pipeline functionality.

License: MIT License

Makefile 14.32% C 85.68%
pipex42 42paris 42school

pipex's Issues

Leak file descriptor

There is a leak on parent in the following command : ./pipex infile ls cat outfile

==225410== FILE DESCRIPTORS: 5 open (3 std) at exit.
==225410== Open file descriptor 4:
==225410==    at 0x498907D: pipe (pipe.c:29)
==225410==    by 0x401386: ft_exec_first_cmd (exec_cmd_utils.c:48)
==225410==    by 0x4015F9: main (main.c:31)
==225410== 
==225410== Open file descriptor 3:
==225410==    at 0x498907D: pipe (pipe.c:29)
==225410==    by 0x401386: ft_exec_first_cmd (exec_cmd_utils.c:48)
==225410==    by 0x4015F9: main (main.c:31)

Can be fixed by adding in ft_exec_first_cmd(char *av, char **envp, int infile) :

	if (infile == -1)
	{
		close(fd[1]);
		close(fd[0]);
		return (ERROR);
	}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.