On Sat, Jul 12, 2014 at 06:20:46PM +0200, Lukasz Marek wrote: > --- > Changelog | 1 + > configure | 5 ++ > doc/general.texi | 1 + > doc/protocols.texi | 29 +++++++ > libavformat/Makefile | 1 + > libavformat/allformats.c | 1 + > libavformat/libsmbclient.c | 207 > +++++++++++++++++++++++++++++++++++++++++++++ > 7 files changed, 245 insertions(+) > create mode 100644 libavformat/libsmbclient.c [...]
> +static int libsmbc_open(URLContext *h, const char *url, int flags)
> +{
> + LIBSMBContext *libsmbc = h->priv_data;
> + int access, ret;
> + struct stat st;
> +
> + libsmbc->fd = -1;
> + libsmbc->filesize = -1;
> +
> + if ((ret = libsmbc_connect(h) < 0))
> + goto fail;
the () look wrong here
[...]
--
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB
The greatest way to live with honor in this world is to be what we pretend
to be. -- Socrates
signature.asc
Description: Digital signature
_______________________________________________ ffmpeg-devel mailing list [email protected] http://ffmpeg.org/mailman/listinfo/ffmpeg-devel
